Skip to content

Commit 5e2d8d9

Browse files
Update test/EFCore.SqlServer.FunctionalTests/TestUtilities/TestEnvironment.cs
Co-authored-by: Copilot <[email protected]>
1 parent d17e25a commit 5e2d8d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/EFCore.SqlServer.FunctionalTests/TestUtilities/TestEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ private static int GetCompatibilityLevel()
515515
sqlConnection.Open();
516516

517517
using var command = new SqlCommand(
518-
"SELECT compatibility_level FROM sys.databases WHERE[name] = 'master';", sqlConnection);
518+
"SELECT compatibility_level FROM sys.databases WHERE [name] = 'master';", sqlConnection);
519519
_compatibilityLevel = (byte)command.ExecuteScalar();
520520

521521
return _compatibilityLevel.Value;

0 commit comments

Comments
 (0)