Skip to content

Commit 2ccb496

Browse files
Remove contextKeys check from hasInlineContext method
Co-Authored-By: [email protected] <[email protected]>
1 parent eeb5bb4 commit 2ccb496

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/shared/internal/src/test/java/com/launchdarkly/sdk/internal/events/BaseEventTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,7 @@ public static Matcher<JsonTestValue> hasContextKeys(Event sourceEvent) {
280280

281281
public static Matcher<JsonTestValue> hasInlineContext(LDValue inlineContext) {
282282
return allOf(
283-
jsonProperty("context", jsonEqualsValue(inlineContext)),
284-
jsonProperty("contextKeys", jsonUndefined())
283+
jsonProperty("context", jsonEqualsValue(inlineContext))
285284
);
286285
}
287286

0 commit comments

Comments
 (0)