diff options
| author | Chris Rebert <[email protected]> | 2015-02-25 23:27:12 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-02-25 23:29:27 -0800 |
| commit | 9afb61fffddb00b35e36427c216c51aa2e20dd9e (patch) | |
| tree | 82bf9ef0696da1490eb982e1db84814e7795df84 | |
| parent | 4ff9c54cddc428e195d6a0c7ba9b4473402bcb3d (diff) | |
| download | bootstrap-9afb61fffddb00b35e36427c216c51aa2e20dd9e.tar.xz bootstrap-9afb61fffddb00b35e36427c216c51aa2e20dd9e.zip | |
QUnit.jsDump => QUnit.dump
Refs http://qunitjs.com/upgrade-guide-2.x/#replace-qunit-jsdump-with-qunit-dump
| -rw-r--r-- | js/tests/unit/phantom.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tests/unit/phantom.js b/js/tests/unit/phantom.js index ea7455cfc..f6f0ac00f 100644 --- a/js/tests/unit/phantom.js +++ b/js/tests/unit/phantom.js @@ -31,8 +31,8 @@ if (!obj.result) { // Dumping large objects can be very slow, and the dump isn't used for // passing tests, so only dump if the test failed. - actual = QUnit.jsDump.parse(obj.actual) - expected = QUnit.jsDump.parse(obj.expected) + actual = QUnit.dump.parse(obj.actual) + expected = QUnit.dump.parse(obj.expected) } // Send it. sendMessage('qunit.log', obj.result, actual, expected, obj.message, obj.source) |
