We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5159d5a commit ee26a2cCopy full SHA for ee26a2c
1 file changed
tests/Testing.Databases.SqlServer.Tests/SqlServerTest.cs
@@ -130,9 +130,6 @@ public async Task CreateAndDeleteAsync_WithSpecificDataFileName()
130
var table = await server.Master.ExecuteQueryAsync("SELECT * FROM [sys].[databases] WHERE [name] = 'CreateAndDeleteDB_WithSpecificDataFileNameAsync'");
131
table.Rows.Should().HaveCount(1);
132
133
- var debug = string.Join(";", Directory.GetFiles(otherDataPath.Path));
134
- debug.Should().BeNull();
135
-
136
// Check the location of the database
137
File.Exists(Path.Combine(otherDataPath.Path, "TheSpecificDataFileNameAsync.mdf")).Should().BeTrue();
138
File.Exists(Path.Combine(otherDataPath.Path, "TheSpecificDataFileNameAsync_log.ldf")).Should().BeTrue();
0 commit comments