Revision: 4727
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4727&view=rev
Author: steverstrong
Date: 2009-09-25 21:59:02 +0000 (Fri, 25 Sep 2009)
Log Message:
-----------
Fixed schoolboy error in the Linq tests :(
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate.Test/Linq/ReadonlyTestCase.cs
Modified: trunk/nhibernate/src/NHibernate.Test/Linq/ReadonlyTestCase.cs
===================================================================
--- trunk/nhibernate/src/NHibernate.Test/Linq/ReadonlyTestCase.cs 2009-09-25 21:06:49 UTC (rev 4726)
+++ trunk/nhibernate/src/NHibernate.Test/Linq/ReadonlyTestCase.cs 2009-09-25 21:59:02 UTC (rev 4727)
@@ -84,7 +84,7 @@
}
BuildSessionFactory();
- //CreateSchema();
+ CreateSchema();
if (!AppliesTo(_sessions))
{
DropSchema();
@@ -92,7 +92,7 @@
Assert.Ignore(GetType() + " does not apply with the current session-factory configuration");
}
- //OnFixtureSetup();
+ OnFixtureSetup();
}
catch (Exception e)
{
@@ -115,7 +115,7 @@
{
OnFixtureTeardown();
- //DropSchema();
+ DropSchema();
Cleanup();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|