Skip to content

Commit f6cda32

Browse files
committed
Fix clang errors
1 parent 6b5f794 commit f6cda32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ public void testProcessesWithLargeGapsBetweenArrivals() {
101101
public void testProcessesWithVeryLargeBurstTimes() {
102102
String[] processNames = {"A", "B"};
103103
int[] arrivalTimes = {0, 1};
104-
int[] burstTimes = {Integer.MAX_VALUE/2, Integer.MAX_VALUE/2};
104+
int[] burstTimes = {Integer.MAX_VALUE / 2, Integer.MAX_VALUE / 2};
105105
int noOfProcesses = 2;
106106

107-
int[] expectedTurnAroundTimes = {Integer.MAX_VALUE/2, Integer.MAX_VALUE-2};
107+
int[] expectedTurnAroundTimes = {Integer.MAX_VALUE / 2, Integer.MAX_VALUE - 2};
108108
int[] actualTurnAroundTimes = HighestResponseRatioNextScheduling.calculateTurnAroundTime(processNames, arrivalTimes, burstTimes, noOfProcesses);
109109

110110
assertArrayEquals(expectedTurnAroundTimes, actualTurnAroundTimes, "Turn Around Times for processes with very large burst times do not match");

0 commit comments

Comments
 (0)