diff options
author | Sean Dague | 2008-09-10 18:17:10 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-10 18:17:10 +0000 |
commit | 3f738846747add1a0b754fc3de366335ebd24911 (patch) | |
tree | f9b6e59d4538fd0095d8697b5e3b1463b90721de /OpenSim/Data/SQLite/Tests | |
parent | don't build doxygen docs on every build. This really slows down bamboo (diff) | |
download | opensim-SC_OLD-3f738846747add1a0b754fc3de366335ebd24911.zip opensim-SC_OLD-3f738846747add1a0b754fc3de366335ebd24911.tar.gz opensim-SC_OLD-3f738846747add1a0b754fc3de366335ebd24911.tar.bz2 opensim-SC_OLD-3f738846747add1a0b754fc3de366335ebd24911.tar.xz |
the explicit log4net configure attempt was maybe breaking bamboo, get
rid of that.
Diffstat (limited to 'OpenSim/Data/SQLite/Tests')
-rw-r--r-- | OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs index af3bfae..fa5193f 100644 --- a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs +++ b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs | |||
@@ -46,8 +46,6 @@ namespace OpenSim.Data.SQLite.Tests | |||
46 | [TestFixtureSetUp] | 46 | [TestFixtureSetUp] |
47 | public void Init() | 47 | public void Init() |
48 | { | 48 | { |
49 | log4net.Config.XmlConfigurator.Configure(); | ||
50 | System.Console.WriteLine("Entering Init"); | ||
51 | connect = "URI=file:" + file + ",version=3"; | 49 | connect = "URI=file:" + file + ",version=3"; |
52 | db = new SQLiteRegionData(); | 50 | db = new SQLiteRegionData(); |
53 | db.Initialise(connect); | 51 | db.Initialise(connect); |
@@ -62,7 +60,6 @@ namespace OpenSim.Data.SQLite.Tests | |||
62 | [Test] | 60 | [Test] |
63 | public void T001_LoadEmpty() | 61 | public void T001_LoadEmpty() |
64 | { | 62 | { |
65 | System.Console.WriteLine("Entering T001"); | ||
66 | List<SceneObjectGroup> objs = db.LoadObjects(region); | 63 | List<SceneObjectGroup> objs = db.LoadObjects(region); |
67 | Assert.AreEqual(0, objs.Count); | 64 | Assert.AreEqual(0, objs.Count); |
68 | } | 65 | } |
@@ -70,7 +67,6 @@ namespace OpenSim.Data.SQLite.Tests | |||
70 | [Test] | 67 | [Test] |
71 | public void T010_StoreObject() | 68 | public void T010_StoreObject() |
72 | { | 69 | { |
73 | System.Console.WriteLine("Entering T010"); | ||
74 | SceneObjectGroup sog = NewSOG(); | 70 | SceneObjectGroup sog = NewSOG(); |
75 | 71 | ||
76 | db.StoreObject(sog, region); | 72 | db.StoreObject(sog, region); |