Skip to content

Commit 2ce0685

Browse files
Jaideep PannuJaideep Pannu
authored andcommitted
lint fixes
1 parent 90e26c3 commit 2ce0685

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-form-renderer/src/tests/validators/validators.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ describe('New validators', () => {
133133
});
134134

135135
it('should not pass the validation and return type error message', () => {
136-
expect(validatorMapper[validatorTypes.MIN_NUMBER_VALUE]({ value: 99, message: 'Foo' })("oo")).toEqual('Value is not a number');
136+
expect(validatorMapper[validatorTypes.MIN_NUMBER_VALUE]({ value: 99, message: 'Foo' })('oo')).toEqual('Value is not a number');
137137
});
138-
138+
139139
it('should not pass the validation (with value as 0)', () => {
140140
expect(validatorMapper[validatorTypes.MIN_NUMBER_VALUE]({ value: 2 })(0)).toEqual('Value must be greater than or equal to 2.');
141141
});

0 commit comments

Comments
 (0)