Skip to content

Commit

Permalink
Conflict solve missing from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Copons committed Mar 23, 2017
1 parent 428c0e0 commit f3dac91
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions client/lib/feed-stream-store/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,22 +177,7 @@ describe( 'FeedPostList', function() {
.onCall( 4 ).returns( {} );
store.selectItem( { feed_ID: 1, ID: 1 } );
store.selectNextItem();
<<<<<<< HEAD
expect( store.getSelectedPostKey() ).to.eql( { feed_ID: 1, ID: 4 } );
=======
expect( store.getSelectedIndex() ).to.equal( 3 );
} );

it( 'should be able to select a gap', function() {
fakePosts[ 1 ].isGap = true;
feedPostStoreStub
.onCall( 0 ).returns( { _state: 'error'} )
.onCall( 1 ).returns( {} )
.onCall( 2 ).returns( {} )
.onCall( 3 ).returns( {} );
store.selectItem( 1 );
expect( store.getSelectedIndex() ).to.equal( 1 );
>>>>>>> Upgrade ESLint computed-property-spacing to error
} );

it( 'should select the prev item', function() {
Expand Down

0 comments on commit f3dac91

Please sign in to comment.