Skip to content

Commit cf93166

Browse files
committed
unit-tests.sh: Allow unset PYTHONPATH
1 parent e566f56 commit cf93166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export LOG_FILE
6666
test -n "$LOG_FILE"
6767

6868
# Choose an arbitrary port
69-
PYTHONPATH=$PYTHONPATH:lib $PYTHON lib/chutney/Traffic.py 9999 \
69+
PYTHONPATH="${PYTHONPATH:-}:lib" $PYTHON lib/chutney/Traffic.py 9999 \
7070
| tee "$LOG_FILE"
7171

7272
# Traffic.py produces output with a single newline. But we don't want to get

0 commit comments

Comments
 (0)