From: <pa...@us...> - 2011-03-13 04:56:24
|
Revision: 5467 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5467&view=rev Author: patearl Date: 2011-03-13 04:56:18 +0000 (Sun, 13 Mar 2011) Log Message: ----------- Tests: Improved compatibility of NH1443 test for SQLite. Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1443/Fixture.cs Modified: trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1443/Fixture.cs =================================================================== --- trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1443/Fixture.cs 2011-03-13 04:50:20 UTC (rev 5466) +++ trunk/nhibernate/src/NHibernate.Test/NHSpecificTest/NH1443/Fixture.cs 2011-03-13 04:56:18 UTC (rev 5467) @@ -17,11 +17,11 @@ if (Dialect.Dialect.GetDialect(cfg.Properties).SupportsIfExistsBeforeTableName) - Assert.That(script, Is.StringContaining("drop table if exists nhibernate.dbo.Aclass")); + Assert.That(script, Is.StringMatching("drop table if exists nhibernate.dbo.Aclass")); else - Assert.That(script, Is.StringContaining("drop table nhibernate.dbo.Aclass")); + Assert.That(script, Is.StringMatching("drop table nhibernate.dbo.Aclass")); - Assert.That(script, Is.StringContaining("create table nhibernate.dbo.Aclass")); + Assert.That(script, Is.StringMatching("create table nhibernate.dbo.Aclass")); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |