diff options
| author | Misko Hevery | 2011-02-03 12:25:43 -0800 |
|---|---|---|
| committer | Misko Hevery | 2011-02-03 12:25:43 -0800 |
| commit | aaaad298ac6447497b1b86edac5b0d9b092625a2 (patch) | |
| tree | 6f1c061b9e00251b156574e770eecd8d0034e099 /test/testabilityPatch.js | |
| parent | ba6b68b6ae2bb2400a75ca2834fee47bfd60f1c6 (diff) | |
| download | angular.js-aaaad298ac6447497b1b86edac5b0d9b092625a2.tar.bz2 | |
corrected typo in the dump function which was preventig serialization of objects
Diffstat (limited to 'test/testabilityPatch.js')
| -rw-r--r-- | test/testabilityPatch.js | 2 |
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); }); |
