Skip to content

Commit 513995a

Browse files
committed
fix: change instances of ImageInspectWithRaw to ImageInspect
1 parent ba9e288 commit 513995a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testhelpers/testhelpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ func DeleteRegistryBlob(t *testing.T, repoName string, digest v1.Hash, encodedAu
260260

261261
func ImageID(t *testing.T, repoName string) string {
262262
t.Helper()
263-
inspect, _, err := DockerCli(t).ImageInspectWithRaw(context.Background(), repoName)
263+
inspect, err := DockerCli(t).ImageInspect(context.Background(), repoName)
264264
AssertNil(t, err)
265265
return inspect.ID
266266
}

0 commit comments

Comments
 (0)