summaryrefslogtreecommitdiff
path: root/app-shells/autojump/files/22.5.3-Use-mock-from-unittest.patch
blob: 942d19c838e004a256f3d4e6705e0d954c98d918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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