From 0a4dc17f281f2419793304f8b79af511b53a7370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Fri, 14 Oct 2022 14:12:59 +0400 Subject: [PATCH] tests/assert-msg-test: it is not a script (anymore?) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes running the program on win32. Signed-off-by: Marc-André Lureau --- glib/tests/assert-msg-test.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/glib/tests/assert-msg-test.py b/glib/tests/assert-msg-test.py index 603bfc459..ddb12d595 100755 --- a/glib/tests/assert-msg-test.py +++ b/glib/tests/assert-msg-test.py @@ -74,10 +74,6 @@ class TestAssertMessage(unittest.TestCase): def runAssertMessage(self, *args): argv = [self.__assert_msg_test] - # shebang lines are not supported on native - # Windows consoles - if os.name == "nt": - argv.insert(0, sys.executable) argv.extend(args) print("Running:", argv)