aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-terminado/test_get_pid.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-terminado/test_get_pid.patch')
-rw-r--r--community/py3-terminado/test_get_pid.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/community/py3-terminado/test_get_pid.patch b/community/py3-terminado/test_get_pid.patch
deleted file mode 100644
index ddc7820bb70..00000000000
--- a/community/py3-terminado/test_get_pid.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./terminado/tests/basic_test.py.orig
-+++ ./terminado/tests/basic_test.py
-@@ -93,7 +93,7 @@
- match = re.search(r'echo \$\$\\.*?\\r\\n(\d+)', repr(stdout))
- pid = int(match.groups()[0])
- else:
-- pid = int(stdout.split('\n')[1])
-+ pid = int(re.findall("[0-9]{1,9}", stdout)[0])
- return pid
-
- def close(self):