summaryrefslogtreecommitdiff
path: root/integrationtests/dcat_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-24 14:06:11 +0300
committerPaul Buetow <paul@buetow.org>2021-10-24 14:06:11 +0300
commit6cfc4e161f94ab159d4b1ea491ffe6f166fa6204 (patch)
tree093fb4bff0bdf086188df86ca5d13dc7f8a34e4f /integrationtests/dcat_test.go
parent87b6c47999f49c2deff42fdcc703c419b251bdbc (diff)
Integration tests can run concurrently, so we now have unique TCP ports for each
Diffstat (limited to 'integrationtests/dcat_test.go')
-rw-r--r--integrationtests/dcat_test.go3
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
}