@@ -52,7 +52,7 @@ function createAssertObject() {
5252
5353 failAssertion (
5454 this ,
55- `expected ${ expected } to be called in order but were called as ${ actual } `
55+ `expected ${ expected } to be called in order but were called as ${ actual } ` ,
5656 ) ;
5757 } else {
5858 assert . pass ( "callOrder" ) ;
@@ -151,7 +151,7 @@ function createAssertObject() {
151151 assert . fail (
152152 `${ assertionMethod } takes 1 argument but was called with ${
153153 assertionArgs . length + 1
154- } arguments`
154+ } arguments`,
155155 ) ;
156156 }
157157 break ;
@@ -196,8 +196,8 @@ function createAssertObject() {
196196 this ,
197197 ( fake . printf || fake . proxy . printf ) . apply (
198198 fake ,
199- concat ( [ msg ] , args )
200- )
199+ concat ( [ msg ] , args ) ,
200+ ) ,
201201 ) ;
202202 } else {
203203 assert . pass ( name ) ;
@@ -215,79 +215,79 @@ function createAssertObject() {
215215
216216 mirrorPropAsAssertion (
217217 "called" ,
218- "expected %n to have been called at least once but was never called"
218+ "expected %n to have been called at least once but was never called" ,
219219 ) ;
220220 mirrorPropAsAssertion (
221221 "notCalled" ,
222222 function ( spy ) {
223223 return ! spy . called ;
224224 } ,
225- "expected %n to not have been called but was called %c%C"
225+ "expected %n to not have been called but was called %c%C" ,
226226 ) ;
227227 mirrorPropAsAssertion (
228228 "calledOnce" ,
229- "expected %n to be called once but was called %c%C"
229+ "expected %n to be called once but was called %c%C" ,
230230 ) ;
231231 mirrorPropAsAssertion (
232232 "calledTwice" ,
233- "expected %n to be called twice but was called %c%C"
233+ "expected %n to be called twice but was called %c%C" ,
234234 ) ;
235235 mirrorPropAsAssertion (
236236 "calledThrice" ,
237- "expected %n to be called thrice but was called %c%C"
237+ "expected %n to be called thrice but was called %c%C" ,
238238 ) ;
239239 mirrorPropAsAssertion (
240240 "calledOn" ,
241- "expected %n to be called with %1 as this but was called with %t"
241+ "expected %n to be called with %1 as this but was called with %t" ,
242242 ) ;
243243 mirrorPropAsAssertion (
244244 "alwaysCalledOn" ,
245- "expected %n to always be called with %1 as this but was called with %t"
245+ "expected %n to always be called with %1 as this but was called with %t" ,
246246 ) ;
247247 mirrorPropAsAssertion ( "calledWithNew" , "expected %n to be called with new" ) ;
248248 mirrorPropAsAssertion (
249249 "alwaysCalledWithNew" ,
250- "expected %n to always be called with new"
250+ "expected %n to always be called with new" ,
251251 ) ;
252252 mirrorPropAsAssertion (
253253 "calledWith" ,
254- "expected %n to be called with arguments %D"
254+ "expected %n to be called with arguments %D" ,
255255 ) ;
256256 mirrorPropAsAssertion (
257257 "calledWithMatch" ,
258- "expected %n to be called with match %D"
258+ "expected %n to be called with match %D" ,
259259 ) ;
260260 mirrorPropAsAssertion (
261261 "alwaysCalledWith" ,
262- "expected %n to always be called with arguments %D"
262+ "expected %n to always be called with arguments %D" ,
263263 ) ;
264264 mirrorPropAsAssertion (
265265 "alwaysCalledWithMatch" ,
266- "expected %n to always be called with match %D"
266+ "expected %n to always be called with match %D" ,
267267 ) ;
268268 mirrorPropAsAssertion (
269269 "calledWithExactly" ,
270- "expected %n to be called with exact arguments %D"
270+ "expected %n to be called with exact arguments %D" ,
271271 ) ;
272272 mirrorPropAsAssertion (
273273 "calledOnceWithExactly" ,
274- "expected %n to be called once and with exact arguments %D"
274+ "expected %n to be called once and with exact arguments %D" ,
275275 ) ;
276276 mirrorPropAsAssertion (
277277 "calledOnceWithMatch" ,
278- "expected %n to be called once and with match %D"
278+ "expected %n to be called once and with match %D" ,
279279 ) ;
280280 mirrorPropAsAssertion (
281281 "alwaysCalledWithExactly" ,
282- "expected %n to always be called with exact arguments %D"
282+ "expected %n to always be called with exact arguments %D" ,
283283 ) ;
284284 mirrorPropAsAssertion (
285285 "neverCalledWith" ,
286- "expected %n to never be called with arguments %*%C"
286+ "expected %n to never be called with arguments %*%C" ,
287287 ) ;
288288 mirrorPropAsAssertion (
289289 "neverCalledWithMatch" ,
290- "expected %n to never be called with match %*%C"
290+ "expected %n to never be called with match %*%C" ,
291291 ) ;
292292 mirrorPropAsAssertion ( "threw" , "%n did not throw exception%C" ) ;
293293 mirrorPropAsAssertion ( "alwaysThrew" , "%n did not always throw exception%C" ) ;
0 commit comments