Skip to content

Commit

Permalink
Update TestDeleteFromByteSlice
Browse files Browse the repository at this point in the history
Still broken
  • Loading branch information
tgerring committed Nov 11, 2014
1 parent 12e8404 commit 5c5df21
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ethutil/bytes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ func (s *BytesSuite) TestDeleteFromByteSlice(c *checker.C) {
slice := []byte{1, 2, 3, 4}
exp := []byte{1, 4}
res := DeleteFromByteSlice(data, slice)
if bytes.Compare(res, exp) != 0 {
t.Errorf("Expected % x Got % x", exp, res)
}
c.Assert(res, checker.DeepEquals, exp)
}
*/
Expand Down

0 comments on commit 5c5df21

Please sign in to comment.