pyFlakes issue fixed: Removed two unused variables

pull/401/head^2
Przemek Wirkus 2014-07-11 10:21:11 +01:00
parent bbf5cbc715
commit a8d47821be
1 changed files with 0 additions and 2 deletions

View File

@ -333,8 +333,6 @@ class SingleTestRunner(object):
def shape_global_test_loop_result(self, test_all_result):
""" Reformats list of results to simple string """
test_loop_count = len(test_all_result)
test_loop_ok_result = test_all_result.count(self.TEST_RESULT_OK)
result = self.TEST_RESULT_FAIL
if all(test_all_result[0] == res for res in test_all_result):
result = test_all_result[0]