Skip to content
Snippets Groups Projects
Commit 4013216f authored by Oleg Girko's avatar Oleg Girko
Browse files

Fix mock import in tests.


For some reason, one test imports Mock class from mock.mock
rather than from mock.
This change fixes this error.

Signed-off-by: default avatarOleg Girko <ol@infoserver.lv>
parent 2ca01ed7
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import uuid
from mock.mock import Mock
from mock import Mock
from synapse.types import RoomID, UserID
from tests import unittest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment