Skip to content

Commit

Permalink
tests: fix test scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaxelr committed Aug 22, 2024
1 parent 763fcaf commit e9c09c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integration/ConnectionContextTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public void Execute_create_and_drop_schema_table(string connectionString, Databa
bool existsTable = context.SchemaMigrationExists();

//Assert
Assert.Equal(ConnectionState.Closed, context.Connection.State);
Assert.Equal(ConnectionState.Open, context.Connection.State);
Assert.True(existsSchema);
Assert.True(existsTable);

Expand Down

0 comments on commit e9c09c5

Please sign in to comment.