summaryrefslogtreecommitdiff
path: root/tests/test_history.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2021-01-22 14:53:33 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2021-01-22 14:53:33 -0500
commit45580056485328338899dd65607c6c57d3797f35 (patch)
tree4cb6a10485b440e0b23eb638764fc2ff14faa974 /tests/test_history.py
parent49fac04513727a67b0360a9e7560087c64dd557d (diff)
parenta3b1b6ddf81cdc0b253f15feeb167ff348afd14f (diff)
downloadcmd2-git-45580056485328338899dd65607c6c57d3797f35.tar.gz
Merge branch 'master' into 2.0
Diffstat (limited to 'tests/test_history.py')
-rwxr-xr-xtests/test_history.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/test_history.py b/tests/test_history.py
index 86c52592..29ca020a 100755
--- a/tests/test_history.py
+++ b/tests/test_history.py
@@ -11,9 +11,15 @@ import pytest
import cmd2
# Python 3.5 had some regressions in the unitest.mock module, so use
# 3rd party mock if available
-from cmd2.parsing import StatementParser
-
-from .conftest import HELP_HISTORY, normalize, run_cmd
+from cmd2.parsing import (
+ StatementParser,
+)
+
+from .conftest import (
+ HELP_HISTORY,
+ normalize,
+ run_cmd,
+)
try:
import mock