浏览代码

pkg: integration: utils_test: fix int format

Signed-off-by: Antonio Murdaca <runcom@linux.com>
Antonio Murdaca 9 年之前
父节点
当前提交
c219311fd8
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      pkg/integration/utils_test.go

+ 3 - 3
pkg/integration/utils_test.go

@@ -355,7 +355,7 @@ func TestRandomUnixTmpDirPath(t *testing.T) {
 	}
 }
 
-func TestConsumeWithSpeedWith(t *testing.T) {
+func TestConsumeWithSpeed(t *testing.T) {
 	reader := strings.NewReader("1234567890")
 	chunksize := 2
 
@@ -365,7 +365,7 @@ func TestConsumeWithSpeedWith(t *testing.T) {
 	}
 
 	if bytes1 != 10 {
-		t.Fatalf("Expected to have read 10 bytes, got %s", bytes1)
+		t.Fatalf("Expected to have read 10 bytes, got %d", bytes1)
 	}
 
 }
@@ -387,7 +387,7 @@ func TestConsumeWithSpeedWithStop(t *testing.T) {
 	}
 
 	if bytes1 != 2 {
-		t.Fatalf("Expected to have read 2 bytes, got %s", bytes1)
+		t.Fatalf("Expected to have read 2 bytes, got %d", bytes1)
 	}
 
 }