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 a4400f7 commit 4f66b0aCopy full SHA for 4f66b0a
test/framework/src/main/java/org/elasticsearch/test/rest/ESRestTestCase.java
@@ -370,7 +370,7 @@ public static void initializeProjectIds() {
370
activeProject = "active00" + randomAlphaOfLength(8).toLowerCase(Locale.ROOT);
371
extraProjects = randomSet(1, 3, () -> randomAlphaOfLength(12).toLowerCase(Locale.ROOT));
372
// TODO do this in a different way
373
- multiProjectEnabled = Objects.equals(System.getProperty("test.multi_project.enabled"), "true");
+ multiProjectEnabled = Boolean.parseBoolean(System.getProperty("test.multi_project.enabled"));
374
}
375
376
@Before
0 commit comments