mirror of
https://github.com/chaijs/chai
synced 2024-11-15 00:07:11 +00:00
inspect typos
This commit is contained in:
parent
b1de9988e5
commit
4fd6d04acc
1 changed files with 4 additions and 4 deletions
|
@ -69,8 +69,8 @@ assert.equal = function (act, exp, msg) {
|
|||
|
||||
test.assert(
|
||||
exp == test.obj
|
||||
, 'expected ' + this.inspect + ' to equal ' + inspect(exp)
|
||||
, 'expected ' + this.inspect + ' to not equal ' + inspect(exp));
|
||||
, 'expected ' + test.inspect + ' to equal ' + inspect(exp)
|
||||
, 'expected ' + test.inspect + ' to not equal ' + inspect(exp));
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -92,8 +92,8 @@ assert.notEqual = function (act, exp, msg) {
|
|||
|
||||
test.assert(
|
||||
exp != test.obj
|
||||
, 'expected ' + this.inspect + ' to equal ' + inspect(exp)
|
||||
, 'expected ' + this.inspect + ' to not equal ' + inspect(exp));
|
||||
, 'expected ' + test.inspect + ' to equal ' + inspect(exp)
|
||||
, 'expected ' + test.inspect + ' to not equal ' + inspect(exp));
|
||||
};
|
||||
|
||||
assert.strictEqual = function (act, exp, msg) {
|
||||
|
|
Loading…
Reference in a new issue