Skip to content

Commit 832e6c9

Browse files
committed
Fix
1 parent 4ba96ab commit 832e6c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/scheduling/LotterySchedulingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public void testLotterySchedulingWithMockedRandom() {
5252

5353
private List<LotteryScheduling.Process> createProcesses() {
5454
LotteryScheduling.Process process1 = new LotteryScheduling.Process("P1", 10, 10); // 10 tickets
55-
LotteryScheduling.Process process2 = new LotteryScheduling.Process("P2", 5, 5); // 5 tickets
56-
LotteryScheduling.Process process3 = new LotteryScheduling.Process("P3", 8, 8); // 8 tickets
55+
LotteryScheduling.Process process2 = new LotteryScheduling.Process("P2", 5, 5); // 5 tickets
56+
LotteryScheduling.Process process3 = new LotteryScheduling.Process("P3", 8, 8); // 8 tickets
5757

5858
List<LotteryScheduling.Process> processes = new ArrayList<>();
5959
processes.add(process1);

0 commit comments

Comments
 (0)