Skip to content

Commit

Permalink
resolved #115
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettladley committed Jan 29, 2024
1 parent 2697e25 commit 7e55f9d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 33 deletions.
10 changes: 0 additions & 10 deletions backend/src/utilities/contains.go

This file was deleted.

5 changes: 2 additions & 3 deletions backend/tests/api/helpers_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package tests

import (
"slices"
"testing"

"github.com/GenerateNU/sac/backend/src/utilities"

"github.com/huandu/go-assert"
)

Expand All @@ -16,6 +15,6 @@ func TestThatAllCasingPermutationsWorks(t *testing.T) {
acutalPermutations := AllCasingPermutations("foo")

for _, permutation := range expectedPermutations {
assert.Assert(utilities.Contains(acutalPermutations, permutation))
assert.Assert(slices.Contains(acutalPermutations, permutation))
}
}
20 changes: 0 additions & 20 deletions backend/tests/utilities_test.go

This file was deleted.

0 comments on commit 7e55f9d

Please sign in to comment.