mirror of
https://github.com/chaijs/chai
synced 2024-11-15 00:07:11 +00:00
Fix a typo
This commit is contained in:
parent
e3cd113725
commit
f287b09c40
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ suite('utilities', function () {
|
|||
|
||||
test('overwriteMethod', function () {
|
||||
chai.use(function (_chai, utils) {
|
||||
utils.overwriteMethod(chai.Assertion, 'equal', function (_super) {
|
||||
utils.overwriteMethod(_chai.Assertion, 'equal', function (_super) {
|
||||
return function (str) {
|
||||
var object = utils.flag(this, 'object');
|
||||
if (object == 'cucumber' && str == 'cuke') {
|
||||
|
|
Loading…
Reference in a new issue