From 1912e685ffbd93182a32d29219bd19ce49f39c63 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Tue, 8 Mar 2022 16:13:27 +1000 Subject: Switch to unittest.mock Since mock is a backport of the standard library, and we no longer support Python 2, we can use the standard library, and drop one external dependency. Change-Id: I798c85f1581f4562908c10cd1b58134cdcb40281 --- git_review/tests/test_unit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git_review') diff --git a/git_review/tests/test_unit.py b/git_review/tests/test_unit.py index 7dc0c0e..1bbdbff 100644 --- a/git_review/tests/test_unit.py +++ b/git_review/tests/test_unit.py @@ -21,9 +21,9 @@ import io import os import sys import textwrap +from unittest import mock import fixtures -import mock import testtools from git_review import cmd -- cgit v1.2.1