summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYoann Lamouroux2018-09-11 15:54:53 +0200
committerjvoisin2018-09-12 14:58:27 +0200
commit0a2a398c9c797f8a93e8a4d91e80c0582f127354 (patch)
treeefe6c36120a1aad45cb18e085bbe204b0645eb96 /tests
parent5cf94bd2565e48beb7eca74b64068c050452fb21 (diff)
trivial modification of all shebang.
`/usr/bin/python3` -> `/usr/bin/env python3` It's always better to trust the environment defined path to bin/python, as virtualenv become the way to go.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_corrupted_files.py2
-rw-r--r--tests/test_libmat2.py2
-rw-r--r--tests/test_policy.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_corrupted_files.py b/tests/test_corrupted_files.py
index 928ca1f..72d124f 100644
--- a/tests/test_corrupted_files.py
+++ b/tests/test_corrupted_files.py
@@ -1,4 +1,4 @@
1#!/usr/bin/python3 1#!/usr/bin/env python3
2 2
3import unittest 3import unittest
4import shutil 4import shutil
diff --git a/tests/test_libmat2.py b/tests/test_libmat2.py
index 95f4ceb..74dad2e 100644
--- a/tests/test_libmat2.py
+++ b/tests/test_libmat2.py
@@ -1,4 +1,4 @@
1#!/usr/bin/python3 1#!/usr/bin/env python3
2 2
3import unittest 3import unittest
4import shutil 4import shutil
diff --git a/tests/test_policy.py b/tests/test_policy.py
index 5a8447b..890f8c3 100644
--- a/tests/test_policy.py
+++ b/tests/test_policy.py
@@ -1,4 +1,4 @@
1#!/usr/bin/python3 1#!/usr/bin/env python3
2 2
3import unittest 3import unittest
4import shutil 4import shutil