From 3764d5ab279c1585276678f3e796b71ab37360f6 Mon Sep 17 00:00:00 2001 From: Christopher Jolly Date: Mon, 27 Feb 2023 20:50:56 +0800 Subject: [PATCH] Declaration is the same for both Odbc and OleDb --- .../TestUtilities/AssertSqlHelper.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/EFCore.Jet.FunctionalTests/TestUtilities/AssertSqlHelper.cs b/test/EFCore.Jet.FunctionalTests/TestUtilities/AssertSqlHelper.cs index 6db4420..cef8e95 100644 --- a/test/EFCore.Jet.FunctionalTests/TestUtilities/AssertSqlHelper.cs +++ b/test/EFCore.Jet.FunctionalTests/TestUtilities/AssertSqlHelper.cs @@ -24,8 +24,6 @@ namespace EntityFrameworkCore.Jet.FunctionalTests.TestUtilities => Declaration(fullDeclaration, DataAccessProviderType); //TODO:confirm which way odbc and oledb do this public static string Declaration(string fullDeclaration, DataAccessProviderType dataAccessProviderType) - => dataAccessProviderType == DataAccessProviderType.Odbc - ? fullDeclaration - : string.Empty; + => fullDeclaration; } } \ No newline at end of file