summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/test-async.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/test-async.js')
-rw-r--r--deps/v8/test/mjsunit/test-async.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/test-async.js b/deps/v8/test/mjsunit/test-async.js
index f8a11c5238..d4fee9bfb9 100644
--- a/deps/v8/test/mjsunit/test-async.js
+++ b/deps/v8/test/mjsunit/test-async.js
@@ -53,7 +53,7 @@ var testAsync;
equals(expected, found, name_opt) {
this.actualAsserts_++;
- if (expected !== found) {
+ if (!deepEquals(expected, found)) {
this.fail(prettyPrinted(expected), found, name_opt);
}
}