From b895ddcb43543d02ea4112152f212d583a43111a Mon Sep 17 00:00:00 2001 From: Matthias Frei Date: Tue, 26 Sep 2023 12:05:30 +0200 Subject: [PATCH] fixup --- acceptance/hidden_paths/test.py | 3 +-- tools/integration/docker.go | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/acceptance/hidden_paths/test.py b/acceptance/hidden_paths/test.py index bf03782f35..9301a919ab 100755 --- a/acceptance/hidden_paths/test.py +++ b/acceptance/hidden_paths/test.py @@ -5,7 +5,6 @@ import http.server import time import threading -import sys from acceptance.common import base from acceptance.common import scion @@ -134,7 +133,7 @@ def _run(self): except Exception as e: print(e) else: - assert("Unexpected success; should not have paths 3 -> 4") + raise AssertionError("Unexpected success; should not have paths 3 -> 4") def _showpaths_bidirectional(self, source: str, destination: str): self._showpaths_run(source, destination) diff --git a/tools/integration/docker.go b/tools/integration/docker.go index e154ab264b..bf7e5af018 100644 --- a/tools/integration/docker.go +++ b/tools/integration/docker.go @@ -38,7 +38,7 @@ var ( var dockerArgs []string func initDockerArgs() { - dockerArgs = []string{"-f", GenFile("scion-dc.yml"), "-p", "scion", "exec", "-T", "-e", + dockerArgs = []string{"-f", GenFile("scion-dc.yml"), "exec", "-T", "-e", fmt.Sprintf("%s=1", GoIntegrationEnv)} }