Fix unit tests

This commit is contained in:
Frederik Carlier
2018-06-19 17:23:57 +02:00
parent 46d56b5cc2
commit e4eebf93f4

View File

@@ -99,7 +99,7 @@ namespace plistcil.test
BinaryPropertyListWriter.Write(stream, original); BinaryPropertyListWriter.Write(stream, original);
stream.Position = 0; stream.Position = 0;
var roundtrip = BinaryPropertyListParser.Parse(stream) as UID; var roundtrip = BinaryPropertyListParser.Parse(stream) as UID;
Assert.Equal(original, roundtrip); Assert.Equal(original.Bytes, roundtrip.Bytes);
} }
} }