MySQL tests pass, except T016_RandomSogWithSceneParts. Total mystery as to why that test doesn't show in panda.

slimupdates
Diva Canto 2010-02-21 17:59:00 -08:00
parent bb171717ce
commit b92645ac56
1 changed files with 6 additions and 0 deletions

View File

@ -73,17 +73,23 @@ namespace OpenSim.Data.Tests
a2.Data = asset1;
a3.Data = asset1;
a1.Metadata.ContentType = "application/octet-stream";
a2.Metadata.ContentType = "application/octet-stream";
a3.Metadata.ContentType = "application/octet-stream";
PropertyScrambler<AssetBase> scrambler = new PropertyScrambler<AssetBase>()
.DontScramble(x => x.Data)
.DontScramble(x => x.ID)
.DontScramble(x => x.FullID)
.DontScramble(x => x.Metadata.ID)
.DontScramble(x => x.Metadata.ContentType)
.DontScramble(x => x.Metadata.FullID);
scrambler.Scramble(a1);
scrambler.Scramble(a2);
scrambler.Scramble(a3);
db.StoreAsset(a1);
db.StoreAsset(a2);
db.StoreAsset(a3);