ObjectContaining no longer tries to track exact mismatches

- equals wasn't looking at it anyways, so just bail as soon as something
  is different.
This commit is contained in:
slackersoft
2014-12-05 08:06:20 -08:00
parent 4d5f27d359
commit 02161b7d48
4 changed files with 12 additions and 46 deletions

View File

@@ -20,7 +20,7 @@ getJasmineRequireObj().Any = function() {
if (this.expectedObject == Object) {
return typeof other == 'object';
}
if (this.expectedObject == Boolean) {
return typeof other == 'boolean';
}