Drop use of third party mock

The third party mock library was needed for mocking support across py2
and py3. Now that we have dropped py2 support, we can use the standard
library unittest.mock instead.

Change-Id: I8b0db843743ba234f35f54e29ca820c909102059
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-08-13 09:57:44 -05:00
parent fd1ae5576a
commit 15a2a8e9e2
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
1 changed files with 1 additions and 1 deletions

View File

@ -13,9 +13,9 @@
# under the License.
import json
import os
from unittest import mock
from django import http
import mock
from cloudkittydashboard.tests import base