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 6889b79 commit 6386772Copy full SHA for 6386772
test/framework/type_checking.py
@@ -237,7 +237,9 @@ def test_check_type_of_param_value_checksums(self):
237
],
238
]
239
for inp in inputs:
240
- self.assertTrue(check_type_of_param_value('checksums', inp), 'Failed for ' + str(inp))
+ type_ok, newval = check_type_of_param_value('checksums', inp)
241
+ self.assertIs(type_ok, True, 'Failed for ' + str(inp))
242
+ self.assertEqual(newval, inp)
243
244
def test_check_type_of_param_value_patches(self):
245
"""Test check_type_of_param_value function for patches."""
0 commit comments