Skip to content

Commit c16529b

Browse files
committed
fix: use valid image name in test
1 parent 31e31cc commit c16529b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/lib/docker.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ describe("docker", () => {
211211
});
212212

213213
test("promise rejects when image doesn't exist", async () => {
214-
const image = "someImage:latest";
214+
const image = "some-non-existent-image:latest";
215215
const destination = "/tmp/image.tar";
216216

217217
const result = docker.save(image, destination);

0 commit comments

Comments
 (0)