Skip to content

Commit

Permalink
chore: fix validator fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
dobromir-hristov committed Mar 20, 2021
1 parent d5e22f2 commit 0790a56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/validators/tests/fixtures.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const T = () => true
export const F = () => false
export const ValidatorResponseT = () => ({ $invalid: true })
export const ValidatorResponseF = () => ({ $invalid: false })
export const ValidatorResponseT = () => ({ $valid: true })
export const ValidatorResponseF = () => ({ $valid: false })
export const NormalizedT = { $validator: T }
export const NormalizedF = { $validator: F }
export const NormalizedValidatorResponseT = { $validator: ValidatorResponseT }
Expand Down

0 comments on commit 0790a56

Please sign in to comment.