Fix in-memory adapter tests

This commit is contained in:
Anatoliy Chakkaev 2012-09-09 17:17:08 +04:00
parent a2618dd3a2
commit 562856f1bd
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ function applyFilter(filter) {
return value.match(example); return value.match(example);
} }
// not strict equality // not strict equality
return example == value; return (example !== null ? example.toString() : example) == (value !== null ? value.toString() : value);
} }
} }