Skip to content

Commit

Permalink
Adjust test expectation following rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Edgar <[email protected]>
  • Loading branch information
MikeEdgar committed Dec 16, 2024
1 parent c40995a commit 3f57c78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ void testConsoleReconciliationWithContainerOverrides() {
.withRequests(Map.of("cpu", Quantity.parse("100m")))
.withLimits(Map.of("cpu", Quantity.parse("200m")))
.build(), uiContainer.getResources());
assertEquals(6, uiContainer.getEnv().size()); // 1 override + 5 from YAML template
assertEquals(7, uiContainer.getEnv().size()); // 1 override + 6 from YAML template
assertEquals("value2", uiContainer.getEnv().stream()
.filter(e -> e.getName().equals("CUSTOM_UI_VAR")).map(EnvVar::getValue).findFirst().orElseThrow());
}
Expand Down

0 comments on commit 3f57c78

Please sign in to comment.