diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2016-08-05 15:36:23 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2016-08-16 09:46:56 -0700 |
commit | 1b29ac77a46c2d0e234f99549582aed598b6f8bb (patch) | |
tree | 85a5848a786f03169e8cef4b96d95179b38363c4 /unittests | |
parent | 99f527f536ba791be8761169ef853c4a7022531f (diff) |
unittests: fix typo that breaks fallback import of mock
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/framework/backends/test_json.py | 2 |
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 |