Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 97076c0

Browse files
committed
Lint fix :)
1 parent c1d210f commit 97076c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/field-component-spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ describe('<Field /> component', () => {
13451345

13461346
assert.isFalse(onChangeFnSpy.called);
13471347
});
1348-
1348+
13491349
it('should only execute custom onChange function pertaining to the changed input', () => {
13501350
const onChangeFnFoo = (val) => val;
13511351
const onChangeFnBar = (val) => val;
@@ -1378,7 +1378,7 @@ describe('<Field /> component', () => {
13781378
assert.isFalse(onChangeFnFooSpy.called);
13791379
assert.isTrue(onChangeFnBarSpy.called);
13801380
});
1381-
1381+
13821382
it('should persist and return the event even when not returned', () => {
13831383
const onChangeFn = () => {};
13841384
const onChangeFnSpy = sinon.spy(onChangeFn);

0 commit comments

Comments
 (0)