Skip to content

Commit

Permalink
Fix lint errors with tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bruderstein committed Jul 27, 2015
1 parent 6c1a327 commit 61ab9a8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/Select-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -590,16 +590,16 @@ describe('Select', function() {

asyncOptions.withArgs('te').callsArgWith(1, null, {
options: [
{value: 'test', label: 'TEST one'},
{value: 'test2', label: 'TEST two'},
{value: 'tell', label: 'TELL three'}
{ value: 'test', label: 'TEST one' },
{ value: 'test2', label: 'TEST two' },
{ value: 'tell', label: 'TELL three' }
]
});

asyncOptions.withArgs('tes').callsArgWith(1, null, {
options: [
{value: 'test', label: 'TEST one'},
{value: 'test2', label: 'TEST two'}
{ value: 'test', label: 'TEST one' },
{ value: 'test2', label: 'TEST two' }
]
});

Expand Down Expand Up @@ -682,9 +682,9 @@ describe('Select', function() {

asyncOptions.withArgs('te').callsArgWith(1, null, {
options: [
{value: 'test', label: 'TEST one'},
{value: 'test2', label: 'TEST two'},
{value: 'tell', label: 'TELL three'}
{ value: 'test', label: 'TEST one' },
{ value: 'test2', label: 'TEST two' },
{ value: 'tell', label: 'TELL three' }
],
complete: true
});
Expand Down Expand Up @@ -1581,5 +1581,5 @@ describe('Select', function() {
expect(React.findDOMNode(instance).querySelectorAll('.Select-option'),
'to have length', 0);
});
})
});
});

0 comments on commit 61ab9a8

Please sign in to comment.