Skip to content

Commit

Permalink
fff
Browse files Browse the repository at this point in the history
  • Loading branch information
CRoberto1926 committed Nov 14, 2024
1 parent 45fd917 commit 80c3eb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void should_ReturnDifferentTasks_For_LockResultsEqualsTwo() throws Exception {

List<TaskSummary> returnedTasks = Collections.synchronizedList(new ArrayList<>());
List<String> accessIds =
Collections.synchronizedList(Stream.of("admin", "admin").toList());
Collections.synchronizedList(new ArrayList<>(List.of("admin", "admin")));

ParallelThreadHelper.runInThread(
getRunnableTest(returnedTasks, accessIds), accessIds.size());
Expand Down

0 comments on commit 80c3eb2

Please sign in to comment.