Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! address PR comments
  • Loading branch information
johnstcn committed Dec 19, 2023
commit f2642d0c496841ddd626299b5d7a52dec72191e5
3 changes: 2 additions & 1 deletion cli/clilog/clilog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package clilog_test

import (
"encoding/json"
"io/fs"
"os"
"path/filepath"
"strings"
Expand Down Expand Up @@ -166,7 +167,7 @@ func TestBuilder(t *testing.T) {
},
}
err := cmd.Invoke().Run()
require.ErrorContains(t, err, "no such file or directory")
require.ErrorIs(t, err, fs.ErrNotExist)
})
}

Expand Down