Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
goran-ethernal committed Feb 16, 2024
1 parent 40a26de commit a2307d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/state_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func TestState(t *testing.T) {
"CALLBlake2f_MaxRounds",
}

folders, err := listFolders([]string{stateTests}, ".json")
folders, err := listFolders([]string{stateTests})
if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -211,7 +211,7 @@ func TestState(t *testing.T) {
for fork, postState := range tc.Post {
forks, exists := Forks[fork]
if !exists {
//t.Logf("%s fork is not supported, skipping test case.", fork)
t.Logf("%s fork is not supported, skipping test case.", fork)
continue
}

Expand Down
2 changes: 1 addition & 1 deletion tests/state_test_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ func contains(l []string, name string) bool {
return false
}

func listFolders(paths []string, extensions ...string) ([]string, error) {
func listFolders(paths []string) ([]string, error) {
var folders []string

for _, rootPath := range paths {
Expand Down

0 comments on commit a2307d4

Please sign in to comment.