diff options
| author | KyleMiles <krm504@nyu.edu> | 2020-10-27 20:03:17 +0000 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2020-10-27 20:03:17 +0000 |
| commit | 69b46e77daa9df9a0bdb1539fa745063eeca7ec1 (patch) | |
| tree | dc53087d3b6689868394f528ebf5bbfe9ae2d0a8 | |
| parent | a5fe648d526a213ead19c59c576eae823a366183 (diff) | |
Fix generator to generate python3 tests only
| -rwxr-xr-x | suite/generator.py | 2 |
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 |
