corrected typo in the dump function which was preventig serialization of objects

This commit is contained in:
Misko Hevery 2011-02-03 12:25:43 -08:00
parent ba6b68b6ae
commit aaaad298ac

View file

@ -15,7 +15,7 @@ if (window.jstestdriver) {
if (isElement(arg)) {
arg = sortedHtml(arg);
} else if (isObject(arg)) {
org = toJson(arg, true);
arg = toJson(arg, true);
}
args.push(arg);
});