summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2020-10-27 20:03:17 +0000
committerKyleMiles <krm504@nyu.edu>2020-10-27 20:03:17 +0000
commit69b46e77daa9df9a0bdb1539fa745063eeca7ec1 (patch)
treedc53087d3b6689868394f528ebf5bbfe9ae2d0a8
parenta5fe648d526a213ead19c59c576eae823a366183 (diff)
Fix generator to generate python3 tests only
-rwxr-xr-xsuite/generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/suite/generator.py b/suite/generator.py
index d0120304..12072f32 100755
--- a/suite/generator.py
+++ b/suite/generator.py
@@ -11,7 +11,7 @@ if sys.version_info.major == 2:
print("Generate unit tests on Python 3. Python 2 is not compatible.")
sys.exit(1)
-unit_test_template = """#!/usr/bin/env python
+unit_test_template = """#!/usr/bin/env python3
# This is an auto generated unit test file do not edit directly
import os
import sys