From 9afb61fffddb00b35e36427c216c51aa2e20dd9e Mon Sep 17 00:00:00 2001 From: Chris Rebert <code@rebertia.com> Date: Wed, 25 Feb 2015 23:27:12 -0800 Subject: [PATCH] QUnit.jsDump => QUnit.dump Refs http://qunitjs.com/upgrade-guide-2.x/#replace-qunit-jsdump-with-qunit-dump --- js/tests/unit/phantom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/tests/unit/phantom.js b/js/tests/unit/phantom.js index ea7455cfc3..f6f0ac00fd 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) -- GitLab