summaryrefslogtreecommitdiff
path: root/testsuite/test_parser.py
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2016-05-25 11:25:57 -0700
committerIan Lee <IanLee1521@gmail.com>2016-05-26 00:45:23 -0700
commitccc7f14000d92e8dc08bbdf34b9fac3435425087 (patch)
tree4757cf8aaa07f81780a91cc38028caf43713f40c /testsuite/test_parser.py
parent90d83aa28ae6ed0ebc49cc83079364b172405fb8 (diff)
downloadpep8-package-pycodestyle.tar.gz
Updated tests and doc examples -> pycodestylepackage-pycodestyle
Diffstat (limited to 'testsuite/test_parser.py')
-rw-r--r--testsuite/test_parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/test_parser.py b/testsuite/test_parser.py
index 1d9e1ac..26a45fc 100644
--- a/testsuite/test_parser.py
+++ b/testsuite/test_parser.py
@@ -2,14 +2,14 @@ import os
import tempfile
import unittest
-import pep8
+import pycodestyle
def _process_file(contents):
with tempfile.NamedTemporaryFile(delete=False) as f:
f.write(contents)
- options, args = pep8.process_options(config_file=f.name)
+ options, args = pycodestyle.process_options(config_file=f.name)
os.remove(f.name)
return options, args