Skip to content

Commit dc7b786

Browse files
committed
fix object tests
1 parent a6aa838 commit dc7b786

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

object.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export const testObject = _tc => {
3636
t.assert(!object.isEmpty({ a: 3 }))
3737
t.assert(object.isEmpty(null))
3838
t.assert(object.isEmpty(undefined))
39-
4039
/**
4140
* @type {Array<string>}
4241
*/
@@ -46,7 +45,7 @@ export const testObject = _tc => {
4645
* @type {Array<number>}
4746
*/
4847
const vals = object.values({ a: 1 })
49-
t.compare(vals, [1, 2])
48+
t.compare(vals, [1])
5049
}
5150

5251
/**

0 commit comments

Comments
 (0)