summaryrefslogtreecommitdiff
path: root/tests/modules
diff options
context:
space:
mode:
authorloic@dachary.org <loic@dachary.org>2017-01-10 22:38:56 +0100
committerloic@dachary.org <loic@dachary.org>2017-01-10 22:38:56 +0100
commiteb2d5d51543fe8be292dd3643e50913901d4a736 (patch)
treebbf6e8c6213a4bc77fddee2b42058f614ea443e0 /tests/modules
parentffc050e243b4c329f582372dd49c55aa225197b9 (diff)
downloadpython-coveragepy-git-eb2d5d51543fe8be292dd3643e50913901d4a736.tar.gz
simplify --source=pkg test cases
Instead of adding a new test, fix the existing test. It succeeded but was not actually testing the expected code path because pkg1 is both a directory and a package. --HG-- branch : issue-426
Diffstat (limited to 'tests/modules')
-rw-r--r--tests/modules/usepkgs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/usepkgs.py b/tests/modules/usepkgs.py
index 4e94acaa..222e68ce 100644
--- a/tests/modules/usepkgs.py
+++ b/tests/modules/usepkgs.py
@@ -1,7 +1,7 @@
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
-import pkg1.p1a, pkg1.p1b
+import pkg1.p1a, pkg1.p1b, pkg1.sub
import pkg2.p2a, pkg2.p2b
import othermods.othera, othermods.otherb
import othermods.sub.osa, othermods.sub.osb