Skip to content
This repository was archived by the owner on Sep 19, 2018. It is now read-only.

Commit 0e55dca

Browse files
authored
Merge pull request #235 from rakuco/idlharness-iterable-expectation
idlharness: Swap result and expectation in one of the iterable tests
2 parents 7e0a754 + a114237 commit 0e55dca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

idlharness.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,7 @@ IdlInterface.prototype.test_member_iterable = function(member)
13841384

13851385
if (isPairIterator) {
13861386
test(function() {
1387-
assert_equals(self[interfaceName].prototype["entries"], self[interfaceName].prototype[Symbol.iterator], "entries method is not the same as @@iterator");
1387+
assert_equals(self[interfaceName].prototype[Symbol.iterator], self[interfaceName].prototype["entries"], "entries method is not the same as @@iterator");
13881388
}, "Testing pair iterable interface " + interfaceName);
13891389
} else {
13901390
test(function() {

0 commit comments

Comments
 (0)