aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs')
-rw-r--r--OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs
index e827638..b188ead 100644
--- a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs
+++ b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs
@@ -26,6 +26,7 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.IO;
29using System.Collections.Generic; 30using System.Collections.Generic;
30using NUnit.Framework; 31using NUnit.Framework;
31using NUnit.Framework.SyntaxHelpers; 32using NUnit.Framework.SyntaxHelpers;
@@ -47,6 +48,7 @@ namespace OpenSim.Data.SQLite.Tests
47 public void Init() 48 public void Init()
48 { 49 {
49 SuperInit(); 50 SuperInit();
51 file = Path.GetTempFileName() + ".db";
50 connect = "URI=file:" + file + ",version=3"; 52 connect = "URI=file:" + file + ",version=3";
51 db = new SQLiteRegionData(); 53 db = new SQLiteRegionData();
52 db.Initialise(connect); 54 db.Initialise(connect);