Skip to content

Commit

Permalink
Fix broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
halgari committed Oct 15, 2024
1 parent 5f04694 commit 163c5a1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/NexusMods.MnemonicDB.Storage.Tests/NullConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public IDb AsOf(TxId txId)

public IDb History()
{
throw new NotImplementedException();
throw new NotSupportedException();
}

public ITransaction BeginTransaction()
Expand All @@ -31,6 +31,11 @@ public ITransaction BeginTransaction()
public IAnalyzer[] Analyzers => throw new NotSupportedException();
public Task<ICommitResult> Excise(EntityId[] entityIds)
{
throw new NotImplementedException();
throw new NotSupportedException();
}

public Task UpdateSchema(params IAttribute[] attribute)
{
throw new NotSupportedException();
}
}

0 comments on commit 163c5a1

Please sign in to comment.