We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c449c01 commit 1742959Copy full SHA for 1742959
NETProvider/src/FirebirdSql.Data.UnitTests/TestsSetup.cs
@@ -57,15 +57,15 @@ public void TearDown()
57
Drop(FbServerType.Embedded);
58
}
59
60
- private static void Drop(FbServerType server)
+ private static void Drop(FbServerType serverType)
61
{
62
- string cs = TestsBase.BuildConnectionString(server);
+ string cs = TestsBase.BuildConnectionString(serverType);
63
DropDatabase(cs);
64
65
66
- private static void Prepare(FbServerType server)
+ private static void Prepare(FbServerType serverType)
67
68
69
CreateDatabase(cs);
70
CreateTables(cs);
71
CreateProcedures(cs);
0 commit comments