@@ -293,7 +293,7 @@ tape( 'the function compares a typed array and a corresponding return annotation
293
293
294
294
actual = new Float64Array ( [ 0 , 2 , 3 ] ) ;
295
295
expected = '<Float64Array>[ 0, 2, 2 ]' ;
296
- msg = 'Expected array entries [0,2,2], but observed [0,2,3]' ;
296
+ msg = 'Expected entries [0,2,2], but observed [0,2,3]' ;
297
297
t . strictEqual ( compareValues ( actual , expected ) , msg , 'returns expected message' ) ;
298
298
299
299
actual = new Float64Array ( [ 0 , 2 , 3 ] ) ;
@@ -314,7 +314,7 @@ tape( 'the function compares a typed array and a corresponding return annotation
314
314
buf = new Float64Array ( [ 1.0 , - 1.0 , 2.0 , - 2.0 ] ) ;
315
315
actual = new Complex128Array ( buf ) ;
316
316
expected = '<Complex128Array>[ 1.0, 1.0, 2.0, 2.0 ]' ;
317
- msg = 'Expected array entries [1,1,2,2], but observed [1,-1,2,-2]' ;
317
+ msg = 'Expected entries [1,1,2,2], but observed [1,-1,2,-2]' ;
318
318
t . strictEqual ( compareValues ( actual , expected ) , msg , 'returns expected message' ) ;
319
319
320
320
actual = new BooleanArray ( [ true , false , true , false ] ) ;
@@ -323,7 +323,7 @@ tape( 'the function compares a typed array and a corresponding return annotation
323
323
324
324
actual = new BooleanArray ( [ true , false , true , false ] ) ;
325
325
expected = '<BooleanArray>[ true, true, true, true ]' ;
326
- msg = 'Expected array entries [true,true,true,true], but observed [true,false,true,false]' ;
326
+ msg = 'Expected entries [true,true,true,true], but observed [true,false,true,false]' ;
327
327
t . strictEqual ( compareValues ( actual , expected ) , msg , 'returns expected message' ) ;
328
328
329
329
t . end ( ) ;
@@ -344,7 +344,7 @@ tape( 'the function compares a complex number and a corresponding return annotat
344
344
345
345
actual = new Complex64 ( 2.0 , 3.0 ) ;
346
346
expected = '<Complex64>[ 2.0, 4.0 ]' ;
347
- msg = 'Expected array entries [2,4], but observed [2,3]' ;
347
+ msg = 'Expected entries [2,4], but observed [2,3]' ;
348
348
t . strictEqual ( compareValues ( actual , expected ) , msg , 'returns expected message' ) ;
349
349
350
350
actual = new Complex128 ( 2.0 , 3.0 ) ;
@@ -357,7 +357,7 @@ tape( 'the function compares a complex number and a corresponding return annotat
357
357
358
358
actual = new Complex128 ( 2.0 , 3.0 ) ;
359
359
expected = '<Complex128>[ 2.0, 4.0 ]' ;
360
- msg = 'Expected array entries [2,4], but observed [2,3]' ;
360
+ msg = 'Expected entries [2,4], but observed [2,3]' ;
361
361
t . strictEqual ( compareValues ( actual , expected ) , msg , 'returns expected message' ) ;
362
362
363
363
actual = new Complex64 ( 2.0 , 3.0 ) ;
0 commit comments