Merge pull request #28158 from lixiaobing10051267/masterMakeSum

fix using wrong function name for MakeTarSumContext
Upstream-commit: 189727581be77049f7f3234894c3966639808e89
Component: engine
This commit is contained in:
Akihiro Suda
2016-11-08 22:37:23 +09:00
committed by GitHub

View File

@ -192,7 +192,7 @@ func TestRemoveDirectory(t *testing.T) {
}
}
func TestMakeSumTarContext(t *testing.T) {
func TestMakeTarSumContext(t *testing.T) {
contextDir, cleanup := createTestTempDir(t, "", "builder-tarsum-test")
defer cleanup()
@ -209,7 +209,7 @@ func TestMakeSumTarContext(t *testing.T) {
tarSum, err := MakeTarSumContext(tarStream)
if err != nil {
t.Fatalf("Error when executing MakeSumContext: %s", err)
t.Fatalf("Error when executing MakeTarSumContext: %s", err)
}
if tarSum == nil {