Skip to content

Commit

Permalink
Use table prefix in SqlServer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stidsborg committed Aug 2, 2024
1 parent a306166 commit 6a786f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static void AssemblyInit(TestContext testContext)

private static async Task<SqlServerFunctionStore> CreateAndInitializeStore(string testClass, string testMethod)
{
var store = new SqlServerFunctionStore(ConnectionString);//, tablePrefix: ComputeSha256Hash(testClass + "§" + testMethod));
var store = new SqlServerFunctionStore(ConnectionString, tablePrefix: ComputeSha256Hash(testClass + "§" + testMethod));
await store.Initialize();
await store.TruncateTables();
return store;
Expand Down

0 comments on commit 6a786f5

Please sign in to comment.