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 279bb3f commit 74fded3Copy full SHA for 74fded3
src/Tests/SqliteSupportTests.cs
@@ -8,7 +8,7 @@ public class SqliteSupportTests
8
static readonly string DbFilePath = Path.Combine(Environment.CurrentDirectory, "test.db");
9
10
[Fact]
11
- public void CanUseSQLite()
+ public void CanUseSqlite()
12
{
13
var connectionString = $"Data Source={DbFilePath}";
14
@@ -33,7 +33,7 @@ public void DoesNotExhibitSafeHandleError()
33
34
var upgrader =
35
DeployChanges.To
36
- .SQLiteDatabase(connectionString)
+ .SqliteDatabase(connectionString)
37
.WithScript("Script001", @"
38
create table test (
39
contact_id INTEGER PRIMARY KEY
0 commit comments