Skip to content

Commit 754daa0

Browse files
committed
fixes example-16 compile issue
Signed-off-by: Min Jin <[email protected]>
1 parent c50819e commit 754daa0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
run: |
123123
for d in $(find examples* -maxdepth 1 -type d)
124124
do
125-
mvn clean install
125+
mvn clean install -Dmaven.test.skip=true
126126
done
127127
codegen:
128128
runs-on: ubuntu-latest

examples/examples-release-16/src/test/java/io/kubernetes/client/examples/ExampleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public void exactUrlOnly() throws IOException, ApiException {
4949
.withBody(client.getJSON().serialize(ns1))));
5050

5151
CoreV1Api api = new CoreV1Api();
52-
V1Namespace ns2 = api.readNamespace("name", null, null, null);
52+
V1Namespace ns2 = api.readNamespace("name", null);
5353
assertEquals(ns1, ns2);
5454
}
5555
}

0 commit comments

Comments
 (0)