Skip to content

Commit

Permalink
Address linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
oleiade committed Nov 10, 2023
1 parent 9f3d2d4 commit 260307c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/modules/k6/experimental/fs/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (mi *ModuleInstance) openImpl(path string) (*File, error) {

fs, ok := initEnv.FileSystems["file"]
if !ok {
return nil, errors.New("open() failed; reason: unable to access the file system")
return nil, errors.New("open() failed; reason: unable to access the file system")
}

if exists, err := fsext.Exists(fs, path); err != nil {
Expand Down

0 comments on commit 260307c

Please sign in to comment.