Skip to content

Commit

Permalink
fix another ESLint error
Browse files Browse the repository at this point in the history
  • Loading branch information
DerTimonius committed Mar 13, 2023
1 parent cbc582b commit d16cc4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bokehjs/test/unit/core/util/arrayable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ describe("core/util/arrayable module", () => {
})

it("should support some() function", () => {
expect(arrayable.some([-1, 2, 6, 11], (num) => !!(num % 2))).to.be.true
expect(arrayable.some([-1, 2, 6, 11], (num) => num % 2 === 0)).to.be.true
expect(arrayable.some([1, 2, 3, 4], (num) => num > 5)).to.be.false
})

Expand Down

0 comments on commit d16cc4b

Please sign in to comment.