Skip to content

Commit

Permalink
Fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelCourtney committed Feb 3, 2025
1 parent 15684ca commit 1829f67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data class Directive<A: Any>(
@JvmField val inner: A,

/** The name of this specific directive. */
@JvmField val name: String,
@JvmField val name: String?,

/** The directive id. */
@JvmField val id: ActivityDirectiveId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ public Map<ActivityDirectiveId, ActivityDirectiveId> updatePlanActivityDirective
for (final var act: toAdd) {
if (act.anchorId() != null) {
toModify.add(new ActivityModification(
act.id(),
ids.get(act.id()),
List.of($ -> $.add("anchor_id", ids.get(act.anchorId()).id()))
));
}
Expand Down

0 comments on commit 1829f67

Please sign in to comment.