Skip to content

Commit 176b2b0

Browse files
committed
working on reviews-2
1 parent e43a607 commit 176b2b0

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

specs/whereEq.spec.ts

+3-7
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,11 @@ describe('whereEq', () => {
3030
})
3131

3232
it('should match specs that have undefined properties', () => {
33-
let spec = {x: undefined};
34-
let test1 = {};
35-
let test2 = {x: null};
36-
let test3 = {x: undefined};
37-
let test4 = {x: 1};
33+
let spec = {x: undefined}
34+
let test1 = {}
35+
let test2 = {x: 1}
3836
eq(whereEq(spec, test1), true)
3937
eq(whereEq(spec, test2), false)
40-
eq(whereEq(spec, test3), true)
41-
eq(whereEq(spec, test4), false)
4238
})
4339

4440
it('should return true for an empty spec', () => {

0 commit comments

Comments
 (0)