~rsalveti/linaro-image-tools/generic-hwpack-oe

« back to all changes in this revision

Viewing changes to linaro_image_tools/tests/test_pyflakes.py

  • Committer: Loïc Minier
  • Date: 2012-06-08 08:23:11 UTC
  • mfrom: (523.1.14 pep8-fixes)
  • Revision ID: loic.minier@linaro.org-20120608082311-7zp7ohswi8crydz9
Merge lp:~lool/linaro-image-tools/pep8-fixes; PEP8 test and compliance fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import subprocess
21
21
from testtools import TestCase
22
22
 
 
23
 
23
24
class TestPyflakes(TestCase):
24
25
    def test_pyflakes(self):
25
26
        # ignore return code
29
30
        (stdout, stderr) = proc.communicate()
30
31
        self.assertEquals('', stdout)
31
32
        self.assertEquals('', stderr)
32