Skip to content

Commit 74fded3

Browse files
committed
Fix up casing in test
1 parent 279bb3f commit 74fded3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tests/SqliteSupportTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class SqliteSupportTests
88
static readonly string DbFilePath = Path.Combine(Environment.CurrentDirectory, "test.db");
99

1010
[Fact]
11-
public void CanUseSQLite()
11+
public void CanUseSqlite()
1212
{
1313
var connectionString = $"Data Source={DbFilePath}";
1414

@@ -33,7 +33,7 @@ public void DoesNotExhibitSafeHandleError()
3333

3434
var upgrader =
3535
DeployChanges.To
36-
.SQLiteDatabase(connectionString)
36+
.SqliteDatabase(connectionString)
3737
.WithScript("Script001", @"
3838
create table test (
3939
contact_id INTEGER PRIMARY KEY

0 commit comments

Comments
 (0)