summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-06-17 10:26:36 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-06-17 10:26:36 -0500
commit8bc76f79debddb80833767075118a63712048704 (patch)
tree9c0167b6a013806b48b3e337d5ecc789a232622f /tests/integration
parent3f434f7d1cf3f7a8e48456410db94376bae4bc24 (diff)
downloadflake8-8bc76f79debddb80833767075118a63712048704.tar.gz
Configure flake8-import-order to use Google Style
This relies on two things: 1. Properly configuring flake8-import-order to use that style 2. Properly configuring flake8-import-order to know that flake8 is our application name.
Diffstat (limited to 'tests/integration')
-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 d0a7971..929bdbf 100644
--- a/tests/integration/test_aggregator.py
+++ b/tests/integration/test_aggregator.py
@@ -1,12 +1,12 @@
"""Test aggregation of config files and command-line options."""
import os
+import pytest
+
from flake8.main import options
from flake8.options import aggregator
from flake8.options import manager
-import pytest
-
CLI_SPECIFIED_CONFIG = 'tests/fixtures/config_files/cli-specified.ini'