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

@@ -111,7 +111,7 @@ func TestUploaderAndDownloader(t *testing.T) {
for i, chunk := range chunks {
downloaded := chunkDownloader.WaitForChunk(i)
if downloaded.GetID() != chunk.GetID() {
t.Error("Uploaded: %s, downloaded: %s", chunk.GetID(), downloaded.GetID())
t.Errorf("Uploaded: %s, downloaded: %s", chunk.GetID(), downloaded.GetID())
}
}