From 00d05415a8dc497b75270ff8177e582c0a127f8b Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Mon, 24 Apr 2023 23:15:56 +0000 Subject: [PATCH] remove unused patch --- 2.10.3-test-patch.patch | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 2.10.3-test-patch.patch diff --git a/2.10.3-test-patch.patch b/2.10.3-test-patch.patch deleted file mode 100644 index ee29168..0000000 --- a/2.10.3-test-patch.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --color -Nur ansible-base-2.10.3.orig/test/units/modules/test_async_wrapper.py ansible-base-2.10.3/test/units/modules/test_async_wrapper.py ---- ansible-base-2.10.3.orig/test/units/modules/test_async_wrapper.py 2020-11-02 14:26:08.000000000 -0800 -+++ ansible-base-2.10.3/test/units/modules/test_async_wrapper.py 2020-11-03 13:07:42.556005427 -0800 -@@ -22,11 +22,11 @@ - def test_run_module(self, monkeypatch): - - def mock_get_interpreter(module_path): -- return ['/usr/bin/python'] -+ return ['/usr/bin/python3'] - - module_result = {'rc': 0} - module_lines = [ -- '#!/usr/bin/python', -+ '#!/usr/bin/python3', - 'import sys', - 'sys.stderr.write("stderr stuff")', - "print('%s')" % json.dumps(module_result)