Merge pull request #16430 from runcom/pkg-integration-fix-format

pkg: integration: utils_test: fix int format
Upstream-commit: 148be8bd7efd2cdb74b0cd9466fccb57c4c51834
Component: engine
This commit is contained in:
Doug Davis
2015-09-20 06:48:58 -05:00

View File

@ -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)
}
}