summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2016-08-05 15:36:23 -0700
committerDylan Baker <dylan@pnwbakers.com>2016-08-16 09:46:56 -0700
commit1b29ac77a46c2d0e234f99549582aed598b6f8bb (patch)
tree85a5848a786f03169e8cef4b96d95179b38363c4
parent99f527f536ba791be8761169ef853c4a7022531f (diff)
unittests: fix typo that breaks fallback import of mock
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
-rw-r--r--unittests/framework/backends/test_json.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/framework/backends/test_json.py b/unittests/framework/backends/test_json.py
index 3f2731bdf..e6574a629 100644
--- a/unittests/framework/backends/test_json.py
+++ b/unittests/framework/backends/test_json.py
@@ -31,7 +31,7 @@ except ImportError:
try:
import mock
except ImportError:
- from unittests import mock
+ from unittest import mock
import jsonschema
import pytest