From e9c09c5ce3fbe53ed8530247f63c5d6f9c22a9d3 Mon Sep 17 00:00:00 2001 From: Jaxel Rojas Date: Thu, 22 Aug 2024 08:40:46 -0400 Subject: [PATCH] tests: fix test scenario --- tests/Integration/ConnectionContextTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/ConnectionContextTests.cs b/tests/Integration/ConnectionContextTests.cs index a50dbd8..a688497 100644 --- a/tests/Integration/ConnectionContextTests.cs +++ b/tests/Integration/ConnectionContextTests.cs @@ -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);