Skip to content

Commit e461d27

Browse files
committed
linting complained about an unhandled Println error
1 parent 15d3ab8 commit e461d27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/runtimeconfig/deploymententry_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func ExampleDeploymentValues() {
4444
if err != nil {
4545
panic(err)
4646
}
47-
fmt.Println(val)
47+
_, _ = fmt.Println(val)
4848
// Output: hello world
4949
}
5050

0 commit comments

Comments
 (0)