We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4bb0e9 commit f77596cCopy full SHA for f77596c
about_code_tool/tests/test_genattrib.py
@@ -34,7 +34,7 @@ def test_convert_dict_key_to_lower_case(self):
34
input_list = [{'Directory': '/test/', 'file_name': 'test.c'}]
35
expected_list = [{'directory': '/test/', 'file_name': 'test.c'}]
36
output = genattrib.convert_dict_key_to_lower_case(input_list)
37
- self.assertTrue(output == expected_list)
+ self.assertEquals(output, expected_list)
38
39
def test_check_no_about_file_existance(self):
40
input_list = [{'Directory': '/test/', 'file_name': '/test.c'}]
0 commit comments