Skip to content

Commit 7a2ab37

Browse files
committed
forgot to lint
1 parent 037f27e commit 7a2ab37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/testcontainers/src/generic-container/generic-container.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
checkContainerIsHealthy,
88
getDockerEventStream,
99
getRunningContainerNames,
10-
getStoppedContainerNames,
1110
waitForDockerEvent,
1211
} from "../utils/test-helper";
1312
import { GenericContainer } from "./generic-container";
@@ -544,7 +543,7 @@ describe("GenericContainer", { timeout: 180_000 }, () => {
544543
const dockerode = (await getContainerRuntimeClient()).container.dockerode;
545544
expect(stopped.getId()).toBeTruthy();
546545
const lowerLevelContainer = dockerode.getContainer(stopped.getId());
547-
await expect(lowerLevelContainer.inspect()).rejects.toThrow(/404/) // Error: (HTTP code 404) no such container
546+
await expect(lowerLevelContainer.inspect()).rejects.toThrow(/404/); // Error: (HTTP code 404) no such container
548547
});
549548

550549
it("should build a target stage", async () => {

0 commit comments

Comments
 (0)