Skip to content

Commit

Permalink
chore: linter fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Dec 11, 2024
1 parent c02dc4e commit 63373a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func TestRunner__Holiday(t *testing.T) {
}
output, err := rr.run()
require.NoError(t, err)
require.Len(t, output, 0)
require.Empty(t, output)
}

func TestRunner__Error(t *testing.T) {
Expand All @@ -46,5 +46,5 @@ func TestRunner__Error(t *testing.T) {
}
output, err := rr.run()
require.Error(t, err)
require.Len(t, output, 0)
require.Empty(t, output)
}

0 comments on commit 63373a0

Please sign in to comment.