summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-06-14 08:03:48 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-06-14 08:03:48 -0500
commit84456866a5a8bbbe322ead206fe1e03309a0ad37 (patch)
tree1bfad54a527fac18adaa0979c1545cddaab75be5 /tests
parent3cd8ef7d341fe91283420c2257ec2d43d1bd2aa4 (diff)
downloadflake8-84456866a5a8bbbe322ead206fe1e03309a0ad37.tar.gz
Fix integration tests
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/test_aggregator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/test_aggregator.py b/tests/integration/test_aggregator.py
index bb87be0..d0a7971 100644
--- a/tests/integration/test_aggregator.py
+++ b/tests/integration/test_aggregator.py
@@ -1,7 +1,7 @@
"""Test aggregation of config files and command-line options."""
import os
-from flake8.main import cli
+from flake8.main import options
from flake8.options import aggregator
from flake8.options import manager
@@ -17,7 +17,7 @@ def optmanager():
prog='flake8',
version='3.0.0',
)
- cli.register_default_options(option_manager)
+ options.register_default_options(option_manager)
return option_manager