Skip to content

Commit

Permalink
Fix TdConfIT failures due to #1778
Browse files Browse the repository at this point in the history
  • Loading branch information
You Yamagata committed Jan 11, 2023
1 parent f122c7e commit 001a450
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions digdag-tests/src/test/java/acceptance/td/TdConfIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void verifyCliConfiguresDigdagClientUsingTdConf()

assertThat(requests.isEmpty(), is(false));
for (FullHttpRequest request : requests) {
assertThat(request.getUri(), is("http://foo.baz.bar:80/api/workflows?count=100"));
assertThat(request.getUri(), is("http://foo.baz.bar:80/api/workflows?count=100&order=asc"));
assertThat(request.headers().get(AUTHORIZATION), is("TD1 " + MOCK_TD_API_KEY));
}
}
Expand Down Expand Up @@ -176,7 +176,7 @@ public void verifyCliIgnoresMissingTdConf()

assertThat(requests.isEmpty(), is(false));
for (FullHttpRequest request : requests) {
assertThat(request.getUri(), is("http://baz.quux:80/api/workflows?count=100"));
assertThat(request.getUri(), is("http://baz.quux:80/api/workflows?count=100&order=asc"));
assertThat(request.headers().get(AUTHORIZATION), is("FOO " + MOCK_TD_API_KEY));
}
}
Expand Down Expand Up @@ -204,7 +204,7 @@ public void verifyCliIgnoresBrokenTdConf()

assertThat(requests.isEmpty(), is(false));
for (FullHttpRequest request : requests) {
assertThat(request.getUri(), is("http://baz.quux:80/api/workflows?count=100"));
assertThat(request.getUri(), is("http://baz.quux:80/api/workflows?count=100&order=asc"));
assertThat(request.headers().get(AUTHORIZATION), is("FOO " + MOCK_TD_API_KEY));
}
}
Expand Down

0 comments on commit 001a450

Please sign in to comment.