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: Oleg Girko <ol@infoserver.lv>
pull/426/head
Oleg Girko 2015-12-06 20:47:41 +00:00
parent 2ca01ed747
commit 4013216fcc
1 changed files with 1 additions and 1 deletions

View File

@ -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