def test_crc32(self): expected = 'CA975130' # Output of cksfv self.assertEqual(utils.crc32(self.file), expected)
def test_crc32(self): expected = 'CA975130' # Output of cksfv assert utils.crc32(self.file) == expected