From 33bc9ace7db917b095ce814e7736d5aef2b41240 Mon Sep 17 00:00:00 2001 From: Daan Hoogland Date: Thu, 25 Feb 2021 10:20:54 +0100 Subject: [PATCH] replace mock with unittest.mock --- systemvm/test/TestCsDhcp.py | 2 +- systemvm/test/TestCsHelper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/systemvm/test/TestCsDhcp.py b/systemvm/test/TestCsDhcp.py index 339fc6a6d7e..8a176fe83d5 100644 --- a/systemvm/test/TestCsDhcp.py +++ b/systemvm/test/TestCsDhcp.py @@ -16,7 +16,7 @@ # under the License. import unittest -import mock +from unittest import mock from cs.CsDhcp import CsDhcp from cs import CsHelper import merge diff --git a/systemvm/test/TestCsHelper.py b/systemvm/test/TestCsHelper.py index c3be13c62d3..515a9a1fb2a 100644 --- a/systemvm/test/TestCsHelper.py +++ b/systemvm/test/TestCsHelper.py @@ -16,7 +16,7 @@ # under the License. import unittest -import mock +from unittest import mock from cs import CsHelper import merge