Skip to content

Commit

Permalink
test(MonitoredTripTest): Fix incorrect var assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
binh-dam-ibigroup committed Dec 5, 2024
1 parent 9fd7d5e commit 02d74f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private static Stream<Arguments> createGetAddedUsersCases() {
primary.userId = "primary-user-id";

MobilityProfileLite newPrimary = new MobilityProfileLite();
primary.userId = "new-primary-user-id";
newPrimary.userId = "new-primary-user-id";

RelatedUser companion = new RelatedUser("[email protected]", CONFIRMED);
RelatedUser newCompanion = new RelatedUser("[email protected]", CONFIRMED);
Expand Down

0 comments on commit 02d74f9

Please sign in to comment.