From 6086542d951860a98002261e98b3bb4d8422e39d Mon Sep 17 00:00:00 2001 From: vzvu3k6k Date: Sat, 31 Jan 2026 14:48:09 +0900 Subject: [PATCH] Fix duplicate test class names in sorting tests --- sorting/bead_sort_test.rb | 2 +- sorting/cocktail_sort_test.rb | 2 +- sorting/comb_sort_test.rb | 2 +- sorting/pancake_sort_test.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sorting/bead_sort_test.rb b/sorting/bead_sort_test.rb index 93bf0305..393c423f 100644 --- a/sorting/bead_sort_test.rb +++ b/sorting/bead_sort_test.rb @@ -2,7 +2,7 @@ require_relative './sort_tests' require_relative './bead_sort' -class TestInsertionSort < Minitest::Test +class TestBeadSort < Minitest::Test include SortTests def sort(input) diff --git a/sorting/cocktail_sort_test.rb b/sorting/cocktail_sort_test.rb index 9e1e78fe..f46f9988 100644 --- a/sorting/cocktail_sort_test.rb +++ b/sorting/cocktail_sort_test.rb @@ -2,7 +2,7 @@ require_relative './sort_tests' require_relative './cocktail_sort' -class TestInsertionSort < Minitest::Test +class TestCocktailSort < Minitest::Test include SortTests def sort(input) diff --git a/sorting/comb_sort_test.rb b/sorting/comb_sort_test.rb index cedfbb6e..d26aeab9 100644 --- a/sorting/comb_sort_test.rb +++ b/sorting/comb_sort_test.rb @@ -2,7 +2,7 @@ require_relative './sort_tests' require_relative './comb_sort' -class TestInsertionSort < Minitest::Test +class TestCombSort < Minitest::Test include SortTests def sort(input) diff --git a/sorting/pancake_sort_test.rb b/sorting/pancake_sort_test.rb index bcebfc3d..b4db6258 100644 --- a/sorting/pancake_sort_test.rb +++ b/sorting/pancake_sort_test.rb @@ -2,7 +2,7 @@ require_relative './sort_tests' require_relative './pancake_sort' -class TestInsertionSort < Minitest::Test +class TestPancakeSort < Minitest::Test include SortTests def sort(input)