cue: suppress some linter errors
Change-Id: Ic935ae04d2310cbce55838356f566fc8cab2aaa2
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/2303
Reviewed-by: Marcel van Lohuizen <mpvl@google.com>
diff --git a/encoding/openapi/openapi_test.go b/encoding/openapi/openapi_test.go
index 504b75a..4f0542a 100644
--- a/encoding/openapi/openapi_test.go
+++ b/encoding/openapi/openapi_test.go
@@ -59,11 +59,11 @@
b, err := Gen(inst, tc.config)
var out = &bytes.Buffer{}
- json.Indent(out, b, "", " ")
+ _ = json.Indent(out, b, "", " ")
wantFile := filepath.Join("testdata", tc.out)
if *update {
- ioutil.WriteFile(wantFile, out.Bytes(), 0644)
+ _ = ioutil.WriteFile(wantFile, out.Bytes(), 0644)
return
}