8000
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 fb27781 commit d3a7bf3Copy full SHA for d3a7bf3
sample-operators/tomcat-operator/src/test/java/io/javaoperatorsdk/operator/sample/TomcatOperatorE2E.java
@@ -71,7 +71,7 @@ public void test() {
71
log.info("Cleanup: deleting test namespace {}", TEST_NS);
72
client.namespaces().delete(testNs);
73
await().atMost(5, MINUTES)
74
- .until(() -> client.namespaces().withName("tomcat-test").get() == null);
+ .until(() -> client.namespaces().withName(TEST_NS).get() == null);
75
}
76
77
log.info("Creating test namespace {}", TEST_NS);
0 commit comments