diff options
Diffstat (limited to 'integrationtests/dcat_test.go')
| -rw-r--r-- | integrationtests/dcat_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/integrationtests/dcat_test.go b/integrationtests/dcat_test.go index 76b7c3b..777e835 100644 --- a/integrationtests/dcat_test.go +++ b/integrationtests/dcat_test.go @@ -47,7 +47,8 @@ func TestDCat2(t *testing.T) { args = append(args, testdataFile) } - if _, err := runCommand(context.TODO(), t, stdoutFile, "../dcat", args...); err != nil { + _, err := runCommand(context.TODO(), t, stdoutFile, "../dcat", args...) + if err != nil { t.Error(err) return } |
