Skip to content

Commit

Permalink
Update src/test/java/dev/openfeature/sdk/ImmutableContextTest.java
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <toddbaert@gmail.com>
  • Loading branch information
toddbaert committed Feb 8, 2023
1 parent 9af0420 commit ac5c06d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void mergeShouldRetainItsSubkeysWhenOverridingContextHasNoTargetingKey() {
attributes.put("key2", new Value("val2"));

EvaluationContext ctx = new ImmutableContext(attributes);
EvaluationContext overriding = new ImmutableContext("");
EvaluationContext overriding = new ImmutableContext();
EvaluationContext merge = ctx.merge(overriding);
assertArrayEquals(new Object[]{"key1", "key2"}, merge.keySet().toArray());

Expand Down

0 comments on commit ac5c06d

Please sign in to comment.