Skip to content

Commit

Permalink
fix: uncomment test assertions
Browse files Browse the repository at this point in the history
Omission from development :-/

refs #2501
refs #2503
  • Loading branch information
fatso83 committed Mar 27, 2023
1 parent 2e486df commit 64f31b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/issues/issues-test.js
Expand Up @@ -816,10 +816,10 @@ describe("issues", function () {
}

const fooStubInstance = this.sandbox.createStubInstance(Foo);
assert.isUndefined(fooStubInstance.wasCalled);
fooStubInstance.testMethod.callThrough();
// const fooStubInstance = new Foo()
fooStubInstance.testMethod();
// assert.isTrue(fooStubInstance.wasCalled);
assert.isTrue(fooStubInstance.wasCalled);
});
});
});

0 comments on commit 64f31b6

Please sign in to comment.