1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 12:45:18 +03:00
aports/testing/pacparser/tests-path.patch
2022-12-23 00:00:09 +00:00

13 lines
472 B
Diff

diff --git a/tests/runtests.py b/tests/runtests.py
index 9760300..fbb436d 100644
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -26,7 +26,7 @@ import os
import sys
def runtests(pacfile, testdata, tests_dir):
- py_ver = '.'.join([str(x) for x in sys.version_info[0:2]])
+ py_ver = ''.join([str(x) for x in sys.version_info[0:2]])
try:
pacparser_module_path = glob.glob(os.path.join(
tests_dir, '..', 'src', 'pymod', 'build', 'lib*%s' % py_ver))[0]