mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
rlp: fix TestIterator error message argument order
This commit is contained in:
parent
eb67d61933
commit
43d9e4778b
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ func TestIterator(t *testing.T) {
|
|||
i++
|
||||
}
|
||||
if exp := 2; i != exp {
|
||||
t.Errorf("count wrong, expected %d got %d", i, exp)
|
||||
t.Errorf("count wrong, expected %d got %d", exp, i)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue