Skip to content

Commit ebaa00d

Browse files
committed
test: update the affected test case with proper interfaces
this adjusts the testcase with the new `should` module introduced by last commit.
1 parent cd8f057 commit ebaa00d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/cases/parsing/harmony-this/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ import * as New from "./new";
2323

2424
it("should be possible to use new correctly", function() {
2525
x
26-
new C().should.be.eql({ok: true});
26+
new C().should.match({ok: true});
2727
x
28-
new C2().should.be.eql({ok: true});
28+
new C2().should.match({ok: true});
2929
x
30-
new New.C().should.be.eql({ok: true});
30+
new New.C().should.match({ok: true});
3131
});

0 commit comments

Comments
 (0)