Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
matzf committed Sep 26, 2023
1 parent 1a07188 commit b895ddc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions acceptance/hidden_paths/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import http.server
import time
import threading
import sys

from acceptance.common import base
from acceptance.common import scion
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tools/integration/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)}
}

Expand Down

0 comments on commit b895ddc

Please sign in to comment.