We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec05283 commit b813f2eCopy full SHA for b813f2e
src/test/java/org/csanchez/jenkins/plugins/kubernetes/KubernetesFactoryAdapterTest.java
@@ -151,8 +151,8 @@ public void autoConfigWithMasterUrl() throws Exception {
151
assertArrayEquals(new String[] { NO_PROXY }, client.getConfiguration().getNoProxy());
152
assertEquals(PROXY_USERNAME, client.getConfiguration().getProxyUsername());
153
assertEquals(PROXY_PASSWORD, client.getConfiguration().getProxyPassword());
154
- assertFalse(client.getConfiguration().getAutoConfigure());
155
- assertEquals("http://example.com", client.getConfiguration().getMasterUrl());
+ assertTrue(client.getConfiguration().getAutoConfigure());
+ assertEquals("http://example.com/", client.getConfiguration().getMasterUrl());
156
}
157
158
@Test
0 commit comments