Attempt at fixing failing test.

viewer-2-initial-appearance
Diva Canto 2010-11-23 07:44:42 -08:00
parent 2527aeb40c
commit a4bf6c5343
1 changed files with 4 additions and 2 deletions

View File

@ -323,7 +323,8 @@ namespace OpenSim.Data.Tests
.IgnoreProperty(x => x.InvType)
.IgnoreProperty(x => x.CreatorIdAsUuid)
.IgnoreProperty(x => x.Description)
.IgnoreProperty(x => x.CreatorId));
.IgnoreProperty(x => x.CreatorId)
.IgnoreProperty(x => x.CreatorData));
inventoryScrambler.Scramble(expected);
db.updateInventoryItem(expected);
@ -333,7 +334,8 @@ namespace OpenSim.Data.Tests
.IgnoreProperty(x => x.InvType)
.IgnoreProperty(x => x.CreatorIdAsUuid)
.IgnoreProperty(x => x.Description)
.IgnoreProperty(x => x.CreatorId));
.IgnoreProperty(x => x.CreatorId)
.IgnoreProperty(x => x.CreatorData));
}
[Test]