mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
Yay for unit tests. Increased the type width of the prims and primshapes
tables, and changed the database modules to actually push these doubles down into the database layer.
This commit is contained in:
@@ -220,7 +220,7 @@ namespace OpenSim.Data.Tests
|
||||
uint localid = localID+1;
|
||||
localID = localID + 1;
|
||||
string name = "Adam West";
|
||||
byte material = (byte) random.Next(255);
|
||||
byte material = (byte) random.Next(127);
|
||||
ulong regionh = (ulong)random.NextDouble() * (ulong)random.Next();
|
||||
int pin = random.Next();
|
||||
Byte[] partsys = new byte[8];
|
||||
@@ -381,7 +381,7 @@ namespace OpenSim.Data.Tests
|
||||
TaskInventoryDictionary dic = new TaskInventoryDictionary();
|
||||
localID = localID + 1;
|
||||
string name = "West Adam";
|
||||
byte material = (byte) random.Next(255);
|
||||
byte material = (byte) random.Next(127);
|
||||
ulong regionh = (ulong)random.NextDouble() * (ulong)random.Next();
|
||||
int pin = random.Next();
|
||||
Byte[] partsys = new byte[8];
|
||||
|
||||
Reference in New Issue
Block a user