Skip to content

Commit a21db0f

Browse files
committed
fix: Expected tower API version after upgrade [COMP-1266]
1 parent 12842eb commit a21db0f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/java/io/seqera/tower/cli/InfoCmdTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void testInfo(OutputType format, MockServerClient mock) throws IOException {
5656
Map<String, String> opts = new HashMap<>();
5757
opts.put("cliVersion", getCliVersion() );
5858
opts.put("cliApiVersion", getCliApiVersion());
59-
opts.put("towerApiVersion", "1.98.0");
59+
opts.put("towerApiVersion", "1.109.0");
6060
opts.put("towerVersion", "22.3.0-torricelli");
6161
opts.put("towerApiEndpoint", "http://localhost:"+mock.getPort());
6262
opts.put("userName", "jordi");
@@ -86,7 +86,7 @@ void testInfoStatusTokenFail(MockServerClient mock) throws IOException {
8686
Map<String, String> opts = new HashMap<>();
8787
opts.put("cliVersion", getCliVersion() );
8888
opts.put("cliApiVersion", getCliApiVersion());
89-
opts.put("towerApiVersion", "1.98.0");
89+
opts.put("towerApiVersion", "1.109.0");
9090
opts.put("towerVersion", "22.3.0-torricelli");
9191
opts.put("towerApiEndpoint", "http://localhost:"+mock.getPort());
9292
opts.put("userName", null);

src/test/resources/runcmd/info/service-info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"serviceInfo": {
33
"version": "22.3.0-torricelli",
4-
"apiVersion": "1.98.0",
4+
"apiVersion": "1.109.0",
55
"commitId": "3f04bfd4",
66
"authTypes": [
77
"github",

0 commit comments

Comments
 (0)