Skip to content

Commit

Permalink
GUS-864 fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Menghao Yu committed Jan 5, 2024
1 parent 37ebfd4 commit b1443e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/__test__/unit/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ describe('Condition Engine', () => {
ctx: Context,
expected: boolean | Input,
strictKeys?: string[],
optionalKeys?: string[]
optionalKeys?: string[],
]
>([
[['==', '$a', '$b'], { a: 10, b: 20 }, false, []],
Expand Down
2 changes: 1 addition & 1 deletion src/expression/logical/__test__/unit/not.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('Expression - Logical - Not', () => {
)

test.each([[[]], [[operand(true), operand(false)]], [[operand(0)]]] as [
Evaluable[]
Evaluable[],
][])('%p should throw', (operands) => {
expect(() => new Not(...operands).evaluate({})).toThrowError()
})
Expand Down
2 changes: 1 addition & 1 deletion src/operand/__test__/unit/reference.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe('Operand - Value', () => {
value: string,
expected: Result | Reference,
strictKeys?: string[],
optionalKeys?: string[]
optionalKeys?: string[],
]
>([
// Existing
Expand Down

0 comments on commit b1443e7

Please sign in to comment.