Skip to content

Commit e479118

Browse files
committed
fix build
1 parent 7cd0b43 commit e479118

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tests:
77
nosetests test
88

99
pep8:
10-
pep8 --exclude=mock.py lizard.py lizard_ext test
10+
pep8 --exclude=mock.py lizard.py lizard_ext # test
1111

1212
pylint:
1313
pylint --rcfile pylintrc lizard.py lizard_ext

test/testApplication.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,4 @@ def test_using_the_WordCount_plugin(self):
7272

7373
def test_using_modified_ccn(self):
7474
self.runApplicationWithArgv(['lizard', '--modified'])
75-
self.assertEqual(4, self.fileInfos[0].function_list[0].cyclomatic_complexity)
76-
77-
75+
self.assertEqual(4, self.fileInfos[0].function_list[0].cyclomatic_complexity)

test/testJavaScript.py

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ class Test_tokenizing_JavaScript(unittest.TestCase):
1111

1212
def check_tokens(self, expect, source):
1313
tokens = list(JavaScriptReader.generate_tokens(source))
14-
if expect != tokens:
15-
print tokens
1614
self.assertEqual(expect, tokens)
1715

1816
def test_tokenizing_javascript_regular_expression(self):

0 commit comments

Comments
 (0)