You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return'Expected array entries ['+expected+'], but observed ['+actual+']';
228
+
}
229
+
}
230
+
returnnull;
231
+
}
232
+
212
233
/**
213
234
* For a typed array, if the return annotation asserts deep instance equality, check whether it corresponds to the actual value; otherwise, check whether the return annotation signals the correct type.
214
235
*
@@ -221,7 +242,6 @@ function checkTypedArrays( actual, expected ) {
221
242
varentries;
222
243
varmatch;
223
244
vartype;
224
-
vari;
225
245
226
246
match=RE_INSTANCE_ANNOTATION.exec(expected);
227
247
if(match){
@@ -231,12 +251,7 @@ function checkTypedArrays( actual, expected ) {
231
251
return'Expected instance type <'+actual.constructor.name+'>, but observed <'+type+'>';
0 commit comments