Skip to content

Commit

Permalink
Fix typo on test that prevented ipdb imports from being found
Browse files Browse the repository at this point in the history
  • Loading branch information
hvelarde committed Sep 17, 2015
1 parent 8e21ade commit 4b6e13e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plone/recipe/codeanalysis/tests/test_flake8.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from plone.recipe.codeanalysis.flake8 import Flake8
from plone.recipe.codeanalysis.flake8 import console_script
from plone.recipe.codeanalysis.flake8 import Flake8
from plone.recipe.codeanalysis.testing import CodeAnalysisTestCase
from shutil import rmtree
from tempfile import mkdtemp
Expand Down Expand Up @@ -68,7 +68,7 @@ def foo(bar):

IPDB_STATEMENT = """\
# -*- coding: utf-8 -*-
import pdb; pdb.set_trace()
import ipdb; ipdb.set_trace()
"""

# pep8-naming
Expand Down

0 comments on commit 4b6e13e

Please sign in to comment.