Skip to content

Commit afca266

Browse files
committed
test: fix leftover multiline variable definition
1 parent e2d2b20 commit afca266

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/docker/container.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ describe('container image tests', async () => {
1414
const getBaseUrl = () => `http://localhost:${container.getMappedPort(SERVER_PORT)}`;
1515

1616
before(async () => {
17-
let image;
18-
1917
// assume we're being run from the root of the repo
20-
image = await GenericContainer.fromDockerfile("./").build();
18+
let image = await GenericContainer.fromDockerfile("./").build();
2119

2220
container = await image.withExposedPorts(SERVER_PORT)
2321
.withWaitStrategy(Wait.forLogMessage(START_MESSAGE))

0 commit comments

Comments
 (0)