diff --git a/src/algorithms/sorting/merge-sort/__test__/MergeSort.test.js b/src/algorithms/sorting/merge-sort/__test__/MergeSort.test.js index 4ae380be..02c67a64 100644 --- a/src/algorithms/sorting/merge-sort/__test__/MergeSort.test.js +++ b/src/algorithms/sorting/merge-sort/__test__/MergeSort.test.js @@ -22,9 +22,9 @@ describe('MergeSort', () => { SortTester.testSortWithCustomComparator(BubbleSort); }); - // it('should do stable sorting', () => { - // SortTester.testSortStability(BubbleSort); - // }); + it('should do stable sorting', () => { + SortTester.testSortStability(BubbleSort); + }); it('should visit EQUAL array element specified number of times', () => { SortTester.testAlgorithmTimeComplexity(