Use unittest.mock if is only aviable
from Python 3.3 is mock part of python standard library in unittest namespace
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
"""Reproduces issue #3774"""
|
||||
|
||||
import mock
|
||||
try:
|
||||
import mock
|
||||
except ImportError:
|
||||
import unittest.mock as mock
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
Reference in New Issue
Block a user