Skip to content

Commit

Permalink
fmt arg fix
Browse files Browse the repository at this point in the history
  • Loading branch information
djherbis committed Jan 18, 2017
1 parent 7872c29 commit 25e500e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nio_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func TestEmpty(t *testing.T) {
}

if n != 3 {
t.Errorf("wrote wrong # of bytes %s", n)
t.Errorf("wrote wrong # of bytes %d", n)
}

n, err = r.Read(nil)
Expand All @@ -115,6 +115,6 @@ func TestEmpty(t *testing.T) {
}

if n != 0 {
t.Errorf("wrote wrong # of bytes %s", n)
t.Errorf("wrote wrong # of bytes %d", n)
}
}

0 comments on commit 25e500e

Please sign in to comment.