From 58ca0d18aab57c2fbf0458e8633e99fb224c8195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Beraud?= Date: Tue, 9 Jun 2020 01:20:02 +0200 Subject: [PATCH] Use unittest.mock instead of mock The mock third party library was needed for mock support in py2 runtimes. Since we now only support py36 and later, we can use the standard lib unittest.mock module instead. Change-Id: I9aa78dcb6db582a624acd9f0fca32c84a0cc4584 --- test-requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index cf070f5f..c7981e51 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -6,5 +6,4 @@ hacking>=3.0.1,<3.1.0 # Apache-2.0 bashate>=0.5.1 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0 -mock>=2.0.0 # BSD pylint==1.4.5 # GNU GPL v2