Skip to content

Commit ae1010f

Browse files
authored
Merge pull request #782 from odinuge/lint-issue
Fix linting error
2 parents da296dc + 042b4d7 commit ae1010f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: go
22
go:
3-
- 1.9.x
43
- 1.10.x
54
- 1.11.x
5+
- 1.12.x
66

77
sudo: required
88

schema/loader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (factory *fsLoaderFactory) refContents(ref gojsonreference.JsonReference) (
5959
}
6060
}
6161
if path == "" {
62-
return nil, fmt.Errorf("Schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces)
62+
return nil, fmt.Errorf("schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces)
6363
}
6464

6565
f, err := factory.fs.Open(path)

0 commit comments

Comments
 (0)