Skip to content

Commit

Permalink
adjust the given ranges in sorting tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
anamarijapapic committed Oct 7, 2023
1 parent 1d22da3 commit 53a432f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Sorting/SortingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function testInsertionSortPerformance()

public function testMergeSortPerformance()
{
$array = range(1, 100000);
$array = range(1, 10000);
$start = microtime(true);
mergeSort($array);
$end = microtime(true);
Expand All @@ -222,7 +222,7 @@ public function testQuickSortPerformance()

public function testRadixSortPerformance()
{
$array = range(1, 100000);
$array = range(1, 10000);
$start = microtime(true);
radixSort($array);
$end = microtime(true);
Expand Down

0 comments on commit 53a432f

Please sign in to comment.