1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-21 10:43:26 +00:00

Fixed format argument errors

This commit is contained in:
Gilbert Chen
2018-05-24 11:37:52 -04:00
parent aadd2aa390
commit f80a5b1025
4 changed files with 5 additions and 5 deletions

View File

@@ -112,7 +112,7 @@ func TestRateLimit(t *testing.T) {
return
}
if int(n) != len(content) {
t.Errorf("Wrote %s bytes instead of %s", n, len(content))
t.Errorf("Wrote %d bytes instead of %d", n, len(content))
return
}
@@ -127,7 +127,7 @@ func TestRateLimit(t *testing.T) {
return
}
if int(n) != len(content) {
t.Errorf("Copied %s bytes instead of %s", n, len(content))
t.Errorf("Copied %d bytes instead of %d", n, len(content))
return
}