8000 use constant instead of string · Sgitario/java-operator-sdk@d3a7bf3 · GitHub
[go: up one dir, main page]

Skip to content

Commit d3a7bf3

Browse files
committed
use constant instead of string
1 parent fb27781 commit d3a7bf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample-operators/tomcat-operator/src/test/java/io/javaoperatorsdk/operator/sample/TomcatOperatorE2E.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void test() {
7171
log.info("Cleanup: deleting test namespace {}", TEST_NS);
7272
client.namespaces().delete(testNs);
7373
await().atMost(5, MINUTES)
74-
.until(() -> client.namespaces().withName("tomcat-test").get() == null);
74+
.until(() -> client.namespaces().withName(TEST_NS).get() == null);
7575
}
7676

7777
log.info("Creating test namespace {}", TEST_NS);

0 commit comments

Comments
 (0)
0