Skip to content

Commit

Permalink
fix missed conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
mossid committed Oct 11, 2018
1 parent 674d3d6 commit 62feae8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions store/prefixstore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ func TestPrefixStoreIterate(t *testing.T) {
pIter.Close()
}

<<<<<<< HEAD
func incFirstByte(bz []byte) {
if bz[0] == byte(255) {
bz[0] = byte(0)
Expand All @@ -144,7 +143,8 @@ func TestCloneAppend(t *testing.T) {
incFirstByte(kvp.value)
require.NotEqual(t, bz, append(kvp.key, kvp.value...))
}
=======
}

func TestPrefixStoreIteratorEdgeCase(t *testing.T) {
db := dbm.NewMemDB()
baseStore := dbStoreAdapter{db}
Expand Down Expand Up @@ -423,5 +423,4 @@ func TestPrefixDBReverseIterator4(t *testing.T) {
itr := pstore.ReverseIterator(bz(""), bz(""))
checkInvalid(t, itr)
itr.Close()
>>>>>>> develop
}

0 comments on commit 62feae8

Please sign in to comment.