aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMisko Hevery2011-02-03 12:25:43 -0800
committerMisko Hevery2011-02-03 12:25:43 -0800
commitaaaad298ac6447497b1b86edac5b0d9b092625a2 (patch)
tree6f1c061b9e00251b156574e770eecd8d0034e099 /test
parentba6b68b6ae2bb2400a75ca2834fee47bfd60f1c6 (diff)
downloadangular.js-aaaad298ac6447497b1b86edac5b0d9b092625a2.tar.bz2
corrected typo in the dump function which was preventig serialization of objects
Diffstat (limited to 'test')
-rw-r--r--test/testabilityPatch.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testabilityPatch.js b/test/testabilityPatch.js
index 78cb767f..76033ab2 100644
--- a/test/testabilityPatch.js
+++ b/test/testabilityPatch.js
@@ -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);
});