diff --git a/problems/min-stack/min_stack_test.go b/problems/min-stack/min_stack_test.go index 38b99e6c1..398f57f02 100644 --- a/problems/min-stack/min_stack_test.go +++ b/problems/min-stack/min_stack_test.go @@ -10,7 +10,7 @@ type caseType struct { expected []int } -func TestConstructor(t *testing.T) { +func TestMinStack(t *testing.T) { tests := [...]caseType{ { input: []int{-2, 0, -3},