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

Commit 3e6dd50

Browse files
committed
Linting
1 parent 3ceeea5 commit 3e6dd50

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/field-component-spec.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ Object.keys(testContexts).forEach((testKey) => {
654654
'four');
655655
});
656656
});
657-
657+
658658
describe('with <select> (defaultValue)', () => {
659659
const store = applyMiddleware(thunk)(createStore)(combineReducers({
660660
testForm: formReducer('test'),
@@ -683,7 +683,8 @@ Object.keys(testContexts).forEach((testKey) => {
683683
const select = TestUtils.findRenderedDOMComponentWithTag(field, 'select');
684684
const options = TestUtils.scryRenderedDOMComponentsWithTag(field, 'option');
685685

686-
it('should select the option that matches the defaultValue attr if no initial value is provided', () => {
686+
it('should select the option that matches the defaultValue attr'
687+
+ 'if no initial value is provided', () => {
687688
assert.isFalse(options[0].selected);
688689
assert.isTrue(options[1].selected);
689690
assert.equal(select.value, 'two');

0 commit comments

Comments
 (0)