Commit 9adafb91 authored by Jacek Sowiński's avatar Jacek Sowiński

Try to import mock from unittest in AddCommandTest

parent 8ebabd43
......@@ -16,7 +16,14 @@
from datetime import date
import unittest
import mock
# We're searching for 'mock'
# pylint: disable=no-name-in-module
try:
from unittest import mock
except ImportError:
import mock
from six import u
from io import StringIO
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment