Remove an NSLog() line I left in the test by mistake.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33638 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
theraven 2011-07-26 18:42:13 +00:00
parent c9e3c58f06
commit 60b9752943

View file

@ -35,7 +35,6 @@ int main(void)
obj = tmp;
}
PASS([obj count] == 3, "Decoded dictionary had the right number of elements");
NSLog(@"Obj: %@", obj);
PASS([NSJSONSerialization isValidJSONObject: obj], "Can serialise deserialised JSON");
NSData *data = [NSJSONSerialization dataWithJSONObject: obj options: NSJSONWritingPrettyPrinted error: 0];
PASS([obj isEqual: [NSJSONSerialization JSONObjectWithData: data options: 0 error: 0]], "Round trip worked with pretty printing");