diff options
author | Diva Canto | 2010-11-23 07:44:42 -0800 |
---|---|---|
committer | Diva Canto | 2010-11-23 07:44:42 -0800 |
commit | a4bf6c53437f6527f0ee422eb57898a2b0a65b6a (patch) | |
tree | 0ceebb1a2c9954d8c4336b5b8ef160b04ee4e183 /OpenSim/Data | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-a4bf6c53437f6527f0ee422eb57898a2b0a65b6a.zip opensim-SC_OLD-a4bf6c53437f6527f0ee422eb57898a2b0a65b6a.tar.gz opensim-SC_OLD-a4bf6c53437f6527f0ee422eb57898a2b0a65b6a.tar.bz2 opensim-SC_OLD-a4bf6c53437f6527f0ee422eb57898a2b0a65b6a.tar.xz |
Attempt at fixing failing test.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/Tests/InventoryTests.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Data/Tests/InventoryTests.cs b/OpenSim/Data/Tests/InventoryTests.cs index 3205bfa..dc03259 100644 --- a/OpenSim/Data/Tests/InventoryTests.cs +++ b/OpenSim/Data/Tests/InventoryTests.cs | |||
@@ -323,7 +323,8 @@ namespace OpenSim.Data.Tests | |||
323 | .IgnoreProperty(x => x.InvType) | 323 | .IgnoreProperty(x => x.InvType) |
324 | .IgnoreProperty(x => x.CreatorIdAsUuid) | 324 | .IgnoreProperty(x => x.CreatorIdAsUuid) |
325 | .IgnoreProperty(x => x.Description) | 325 | .IgnoreProperty(x => x.Description) |
326 | .IgnoreProperty(x => x.CreatorId)); | 326 | .IgnoreProperty(x => x.CreatorId) |
327 | .IgnoreProperty(x => x.CreatorData)); | ||
327 | 328 | ||
328 | inventoryScrambler.Scramble(expected); | 329 | inventoryScrambler.Scramble(expected); |
329 | db.updateInventoryItem(expected); | 330 | db.updateInventoryItem(expected); |
@@ -333,7 +334,8 @@ namespace OpenSim.Data.Tests | |||
333 | .IgnoreProperty(x => x.InvType) | 334 | .IgnoreProperty(x => x.InvType) |
334 | .IgnoreProperty(x => x.CreatorIdAsUuid) | 335 | .IgnoreProperty(x => x.CreatorIdAsUuid) |
335 | .IgnoreProperty(x => x.Description) | 336 | .IgnoreProperty(x => x.Description) |
336 | .IgnoreProperty(x => x.CreatorId)); | 337 | .IgnoreProperty(x => x.CreatorId) |
338 | .IgnoreProperty(x => x.CreatorData)); | ||
337 | } | 339 | } |
338 | 340 | ||
339 | [Test] | 341 | [Test] |