Fix in-memory adapter tests
This commit is contained in:
parent
a2618dd3a2
commit
562856f1bd
|
@ -129,7 +129,7 @@ function applyFilter(filter) {
|
|||
return value.match(example);
|
||||
}
|
||||
// not strict equality
|
||||
return example == value;
|
||||
return (example !== null ? example.toString() : example) == (value !== null ? value.toString() : value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue