Skip to content

Commit

Permalink
Update test cases for case:
Browse files Browse the repository at this point in the history
        self.assertTrue(output == expected)
to
        self.assertEquals(expected, output )
  • Loading branch information
chinyeungli committed Aug 14, 2014
1 parent e4bb0e9 commit f77596c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion about_code_tool/tests/test_genattrib.py
Expand Up @@ -34,7 +34,7 @@ def test_convert_dict_key_to_lower_case(self):
input_list = [{'Directory': '/test/', 'file_name': 'test.c'}]
expected_list = [{'directory': '/test/', 'file_name': 'test.c'}]
output = genattrib.convert_dict_key_to_lower_case(input_list)
self.assertTrue(output == expected_list)
self.assertEquals(output, expected_list)

def test_check_no_about_file_existance(self):
input_list = [{'Directory': '/test/', 'file_name': '/test.c'}]
Expand Down

0 comments on commit f77596c

Please sign in to comment.