@@ -9,7 +9,7 @@ var match = require("@sinonjs/samsam").createMatcher;
9
9
var stub = require ( "./stub" ) ;
10
10
var assert = require ( "./assert" ) ;
11
11
var deepEqual = require ( "@sinonjs/samsam" ) . deepEqual ;
12
- var format = require ( "./ util/core/format" ) ;
12
+ var inspect = require ( "util" ) . inspect ;
13
13
var valueToString = require ( "@sinonjs/commons" ) . valueToString ;
14
14
15
15
var every = arrayProto . every ;
@@ -166,17 +166,17 @@ var mockExpectation = {
166
166
167
167
if ( ! args ) {
168
168
mockExpectation . fail (
169
- `${ this . method } received no arguments, expected ${ format (
169
+ `${ this . method } received no arguments, expected ${ inspect (
170
170
expectedArguments
171
171
) } `
172
172
) ;
173
173
}
174
174
175
175
if ( args . length < expectedArguments . length ) {
176
176
mockExpectation . fail (
177
- `${ this . method } received too few arguments (${ format (
177
+ `${ this . method } received too few arguments (${ inspect (
178
178
args
179
- ) } ), expected ${ format ( expectedArguments ) } `
179
+ ) } ), expected ${ inspect ( expectedArguments ) } `
180
180
) ;
181
181
}
182
182
@@ -185,9 +185,9 @@ var mockExpectation = {
185
185
args . length !== expectedArguments . length
186
186
) {
187
187
mockExpectation . fail (
188
- `${ this . method } received too many arguments (${ format (
188
+ `${ this . method } received too many arguments (${ inspect (
189
189
args
190
- ) } ), expected ${ format ( expectedArguments ) } `
190
+ ) } ), expected ${ inspect ( expectedArguments ) } `
191
191
) ;
192
192
}
193
193
@@ -196,17 +196,17 @@ var mockExpectation = {
196
196
function ( expectedArgument , i ) {
197
197
if ( ! verifyMatcher ( expectedArgument , args [ i ] ) ) {
198
198
mockExpectation . fail (
199
- `${ this . method } received wrong arguments ${ format (
199
+ `${ this . method } received wrong arguments ${ inspect (
200
200
args
201
201
) } , didn't match ${ String ( expectedArguments ) } `
202
202
) ;
203
203
}
204
204
205
205
if ( ! deepEqual ( args [ i ] , expectedArgument ) ) {
206
206
mockExpectation . fail (
207
- `${ this . method } received wrong arguments ${ format (
207
+ `${ this . method } received wrong arguments ${ inspect (
208
208
args
209
- ) } , expected ${ format ( expectedArguments ) } `
209
+ ) } , expected ${ inspect ( expectedArguments ) } `
210
210
) ;
211
211
}
212
212
} ,
0 commit comments