From 52ba9ae209ab2f312c65a472c3fa719b1fe2b88a Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Mon, 17 Feb 2020 12:53:22 +0000 Subject: [tests] delete random shebangs Various unit test source files in tests/ have unnecessary shell "shebang" notation specifying a particular Python interpereter. Since these files are executed under the test suite runner there is no need for them to include these lines. Related: #1949 Signed-off-by: Bryn M. Reeves Signed-off-by: Jake Hunsaker --- tests/archive_tests.py | 2 -- tests/option_tests.py | 2 -- tests/report_tests.py | 2 -- tests/sosreport_pexpect.py | 2 -- 4 files changed, 8 deletions(-) diff --git a/tests/archive_tests.py b/tests/archive_tests.py index 350220b9..499ebf7e 100644 --- a/tests/archive_tests.py +++ b/tests/archive_tests.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python - import unittest import os import tarfile diff --git a/tests/option_tests.py b/tests/option_tests.py index 4af16270..308b4d9a 100644 --- a/tests/option_tests.py +++ b/tests/option_tests.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python - import unittest from sos.plugins import Plugin diff --git a/tests/report_tests.py b/tests/report_tests.py index e18c4cf4..bd762963 100644 --- a/tests/report_tests.py +++ b/tests/report_tests.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python - import unittest import os diff --git a/tests/sosreport_pexpect.py b/tests/sosreport_pexpect.py index af94541c..8cf79a8f 100644 --- a/tests/sosreport_pexpect.py +++ b/tests/sosreport_pexpect.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python - import unittest import pexpect -- cgit