Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sorting/bead_sort_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion sorting/cocktail_sort_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion sorting/comb_sort_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion sorting/pancake_sort_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down