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

Commit a01fb72

Browse files
committed
fix lint errors.... dammit
1 parent 5fb61bc commit a01fb72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/field-actions-spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,19 @@ Object.keys(testContexts).forEach((testKey) => {
9292
// this is a weird one, but because $form is now
9393
// stuffed into the store in each model that is an object
9494
// the sub fields updater expects to find it.
95-
// so if it is studdenly changed to null,
96-
// the .$form breaks. in the code, we just added
95+
// so if it is studdenly changed to null,
96+
// the .$form breaks. in the code, we just added
9797
// a condition like subField && subField.$form.
9898
// this test will ensure that condition stays functioning
99-
const reducer = formReducer('foo', {a: {}});
99+
const reducer = formReducer('foo', { a: {} });
100100
let didThrow = false;
101101

102102
try {
103103
reducer(
104104
undefined,
105105
actions.change('foo.a', null)
106106
);
107-
} catch(e) {
107+
} catch (e) {
108108
didThrow = true;
109109
}
110110

0 commit comments

Comments
 (0)