diff --git a/main_test.go b/main_test.go index 39590f0d..d8ee1c1b 100644 --- a/main_test.go +++ b/main_test.go @@ -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) { @@ -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) }