From a6b5733a94eaaf42c5b113de64fced3ea807c91e Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Sun, 15 Apr 2018 13:14:54 -0700 Subject: Removed unit test dependency on mock mock was a backport of Python's built in unittest.mock and was required for Python 3.2 or earlier - Since we now support Python 3.4+ moving forward we no longer need to make use of the 3rd party mock module --- tests/test_transcript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_transcript.py') diff --git a/tests/test_transcript.py b/tests/test_transcript.py index f7b4a8f2..a579b04a 100644 --- a/tests/test_transcript.py +++ b/tests/test_transcript.py @@ -11,7 +11,7 @@ import sys import re import random -import mock +from unittest import mock import pytest import six -- cgit v1.2.1