summaryrefslogtreecommitdiff
path: root/tests/test_autocompletion.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2018-04-18 00:05:01 -0400
committerEric Lin <anselor@gmail.com>2018-04-18 00:05:01 -0400
commita448192c3747ac95c04d85c0da4abfb90297251a (patch)
tree4d980b26f595927016ba3fddbc8e5ba7dd107da4 /tests/test_autocompletion.py
parent93cc2461282067a3601d6ac546a99a40a60eef93 (diff)
parent01e434183d3333b1be03c293a82e36b034e0f78b (diff)
downloadcmd2-git-a448192c3747ac95c04d85c0da4abfb90297251a.tar.gz
Merge remote-tracking branch 'origin/master' into autocompleter
Updated AutoCompleter (#349) to match new directory structure from packaging effort.
Diffstat (limited to 'tests/test_autocompletion.py')
-rw-r--r--tests/test_autocompletion.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_autocompletion.py b/tests/test_autocompletion.py
index bca46794..0b33095c 100644
--- a/tests/test_autocompletion.py
+++ b/tests/test_autocompletion.py
@@ -7,14 +7,12 @@ file system paths, and shell commands.
Copyright 2017 Todd Leonhardt <todd.leonhardt@gmail.com>
Released under MIT license, see LICENSE file
"""
-import argparse
import os
import sys
-import cmd2
from unittest import mock
import pytest
-from conftest import run_cmd, normalize, StdOut
+from .conftest import run_cmd, normalize, StdOut
MY_PATH = os.path.realpath(__file__)
sys.path.append(os.path.join(MY_PATH, '..', 'examples'))