Skip to content

Commit

Permalink
Fix up casing in test
Browse files Browse the repository at this point in the history
  • Loading branch information
droyad committed Dec 17, 2024
1 parent 279bb3f commit 74fded3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tests/SqliteSupportTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class SqliteSupportTests
static readonly string DbFilePath = Path.Combine(Environment.CurrentDirectory, "test.db");

[Fact]
public void CanUseSQLite()
public void CanUseSqlite()
{
var connectionString = $"Data Source={DbFilePath}";

Expand All @@ -33,7 +33,7 @@ public void DoesNotExhibitSafeHandleError()

var upgrader =
DeployChanges.To
.SQLiteDatabase(connectionString)
.SqliteDatabase(connectionString)
.WithScript("Script001", @"
create table test (
contact_id INTEGER PRIMARY KEY
Expand Down

0 comments on commit 74fded3

Please sign in to comment.