Skip to content

Commit

Permalink
test: Fix GraphQL test waiting for the wrong status code on TED
Browse files Browse the repository at this point in the history
  • Loading branch information
sharat87 authored Apr 1, 2024
1 parent 4b27a59 commit 58dec68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ public String getRemoteExecutionUrl() {
@SuppressWarnings("rawtypes")
@Container
public static GenericContainer graphqlContainer = new GenericContainer(
CompletableFuture.completedFuture("appsmith/test-event" + "-driver"))
CompletableFuture.completedFuture("appsmith/test-event-driver"))
.withExposedPorts(5000)
.waitingFor(Wait.forHttp("/").forStatusCode(404));
.waitingFor(Wait.forHttp("/").forStatusCode(200));

@BeforeEach
public void setUp() throws IOException {
Expand Down

0 comments on commit 58dec68

Please sign in to comment.