We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f471ae commit 39e5284Copy full SHA for 39e5284
.spec/sorting/sort_spec.lua
@@ -76,9 +76,6 @@ describe("Bogosort", function()
76
check_sort(require("sorting.bogosort"), 5)
77
end)
78
describe("Countingsort", function()
79
- -- Test with multiple radii
80
local countingsort = require("sorting.countingsort")
81
- check_sort(countingsort(), nil, true)
82
- check_sort(countingsort(2), nil, true)
83
- check_sort(countingsort(1e3), nil, true)
+ check_sort(require(countingsort()), nil, true)
84
0 commit comments