aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs
diff options
context:
space:
mode:
authorSean Dague2009-01-05 15:59:08 +0000
committerSean Dague2009-01-05 15:59:08 +0000
commitd8a2ad5cb5afd9bb16c4696ce841b846deef1190 (patch)
tree60597f6c5a31a2c615e4e7f9423447825b6bea72 /OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs
parent* Fixes a small bug where load-oar fails due to whitespace in region name. (diff)
downloadopensim-SC_OLD-d8a2ad5cb5afd9bb16c4696ce841b846deef1190.zip
opensim-SC_OLD-d8a2ad5cb5afd9bb16c4696ce841b846deef1190.tar.gz
opensim-SC_OLD-d8a2ad5cb5afd9bb16c4696ce841b846deef1190.tar.bz2
opensim-SC_OLD-d8a2ad5cb5afd9bb16c4696ce841b846deef1190.tar.xz
change the drop order to see if this affects unit test fails
From: Sean Dague <sdague@gmail.com>
Diffstat (limited to 'OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs')
-rw-r--r--OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs b/OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs
index 5e6b7f9..6f95c6c 100644
--- a/OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs
+++ b/OpenSim/Data/MySQL/Tests/MySQLInventoryTest.cs
@@ -76,9 +76,9 @@ namespace OpenSim.Data.MySQL.Tests
76 } 76 }
77 if (database != null) 77 if (database != null)
78 { 78 {
79 database.ExecuteSql("drop table migrations");
80 database.ExecuteSql("drop table inventoryitems"); 79 database.ExecuteSql("drop table inventoryitems");
81 database.ExecuteSql("drop table inventoryfolders"); 80 database.ExecuteSql("drop table inventoryfolders");
81 database.ExecuteSql("drop table migrations");
82 } 82 }
83 } 83 }
84 } 84 }