diff options
author | Melanie | 2010-04-30 19:29:21 +0100 |
---|---|---|
committer | Melanie | 2010-04-30 19:29:21 +0100 |
commit | 23282935f1f25fd44d85193f3c13ea97c755f75c (patch) | |
tree | 689d44f5657dd36e74c3b4d4dd508c86ee90cea1 /OpenSim/Data/Tests | |
parent | Fix a null ref from trying to access a dictionary that was never initialized. (diff) | |
parent | * XInventory fairly tested, including for HG. Almost ready to switch. (diff) | |
download | opensim-SC-23282935f1f25fd44d85193f3c13ea97c755f75c.zip opensim-SC-23282935f1f25fd44d85193f3c13ea97c755f75c.tar.gz opensim-SC-23282935f1f25fd44d85193f3c13ea97c755f75c.tar.bz2 opensim-SC-23282935f1f25fd44d85193f3c13ea97c755f75c.tar.xz |
Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
Diffstat (limited to 'OpenSim/Data/Tests')
-rw-r--r-- | OpenSim/Data/Tests/DataTestUtil.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/Tests/DataTestUtil.cs b/OpenSim/Data/Tests/DataTestUtil.cs index d211ab3..5393529 100644 --- a/OpenSim/Data/Tests/DataTestUtil.cs +++ b/OpenSim/Data/Tests/DataTestUtil.cs | |||
@@ -39,7 +39,8 @@ namespace OpenSim.Data.Tests | |||
39 | public class DataTestUtil | 39 | public class DataTestUtil |
40 | { | 40 | { |
41 | public const uint UNSIGNED_INTEGER_MIN = uint.MinValue; | 41 | public const uint UNSIGNED_INTEGER_MIN = uint.MinValue; |
42 | public const uint UNSIGNED_INTEGER_MAX = uint.MaxValue; | 42 | //public const uint UNSIGNED_INTEGER_MAX = uint.MaxValue; |
43 | public const uint UNSIGNED_INTEGER_MAX = INTEGER_MAX; | ||
43 | 44 | ||
44 | public const int INTEGER_MIN = int.MinValue + 1; // Postgresql requires +1 to .NET int.MinValue | 45 | public const int INTEGER_MIN = int.MinValue + 1; // Postgresql requires +1 to .NET int.MinValue |
45 | public const int INTEGER_MAX = int.MaxValue; | 46 | public const int INTEGER_MAX = int.MaxValue; |