github.com/devseccon/trivy@v0.47.1-0.20231123133102-bd902a0bd996/internal/testutil/error.go (about) 1 package testutil 2 3 import ( 4 "runtime" 5 6 "github.com/samber/lo" 7 ) 8 9 var ErrNotExist string = lo.Ternary(runtime.GOOS == "windows", 10 "The system cannot find the file specified.", 11 "no such file or directory")