Skip to content

Commit 733276e

Browse files
committed
Initial Commit
1 parent 4a8baa2 commit 733276e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/output_matching.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
set -o errexit
88
set -o xtrace
99

10-
PYTHON_PATH=$(which python)
10+
PYTHON_PATH=$(which python3)
1111
MD5_PATH=$(which md5sum)
1212
OUTPUT_PATH="/tmp"
1313
REPO_ROOT=$(dirname "${BASH_SOURCE[0]}")/../
@@ -25,7 +25,7 @@ function run_output_matching_test()
2525
# Iterate through every map file..
2626
while read -r map_file; do
2727
local pretty_name=$(basename ${map_file} .map)
28-
${PYTHON3_PATH} spawn_zone_tool.py "tests/maps/${map_file}.map" --output "${OUTPUT_PATH}/${map_file}.nsz"
28+
${PYTHON_PATH} spawn_zone_tool.py "tests/maps/${map_file}.map" --output "${OUTPUT_PATH}/${map_file}.nsz"
2929

3030
if [[ $(${MD5_PATH} "tests/nszs/${map_file}.nsz" "${OUTPUT_PATH}/${map_file}.nsz" | awk '{print $1}' | uniq | wc -l) == 1 ]]; then
3131
echo "[INFO]: [${map_file}] PASS"

0 commit comments

Comments
 (0)