mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
app-shells/autojump: Use mock from unittest
Closes: https://bugs.gentoo.org/831958 Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
@@ -29,8 +29,12 @@ DEPEND="${PYTHON_DEPS}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PV}-Use-mock-from-unittest.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
eapply_user
|
||||
default
|
||||
sed -e "s:/usr/local/share:/usr/share:" \
|
||||
-i bin/autojump.sh || die
|
||||
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
https://github.com/wting/autojump/pull/648
|
||||
|
||||
From b935baa9ab73305e0c8e3d733f40cc8567740020 Mon Sep 17 00:00:00 2001
|
||||
From: Matt Turner <mattst88@gmail.com>
|
||||
Date: Thu, 27 Jan 2022 12:11:33 -0800
|
||||
Subject: [PATCH] Use mock from unittest
|
||||
|
||||
---
|
||||
tests/unit/autojump_utils_test.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/tests/unit/autojump_utils_test.py b/tests/unit/autojump_utils_test.py
|
||||
index 07f67b3..386b4cd 100644
|
||||
--- a/tests/unit/autojump_utils_test.py
|
||||
+++ b/tests/unit/autojump_utils_test.py
|
||||
@@ -3,7 +3,7 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest
|
||||
|
||||
sys.path.append(os.path.join(os.getcwd(), 'bin')) # noqa
|
||||
--
|
||||
2.34.1
|
||||
|
||||
Reference in New Issue
Block a user