We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9903897 commit 04983ffCopy full SHA for 04983ff
src/NHibernate.Test/NHSpecificTest/NH1443/Fixture.cs
@@ -17,11 +17,11 @@ private static void Bug(Configuration cfg)
17
18
19
if (Dialect.Dialect.GetDialect(cfg.Properties).SupportsIfExistsBeforeTableName)
20
- Assert.That(script, Does.Contain("drop table if exists nhibernate.dbo.Aclass"));
+ Assert.That(script, Does.Match("drop table if exists nhibernate.dbo.Aclass"));
21
else
22
- Assert.That(script, Does.Contain("drop table nhibernate.dbo.Aclass"));
+ Assert.That(script, Does.Match("drop table nhibernate.dbo.Aclass"));
23
24
- Assert.That(script, Does.Contain("create table nhibernate.dbo.Aclass"));
+ Assert.That(script, Does.Match("create table nhibernate.dbo.Aclass"));
25
26
}
27
0 commit comments