We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f224bf + c464af6 commit b845652Copy full SHA for b845652
1 file changed
oss_src/unity/python/sframe/test/test_extensions.py
@@ -14,9 +14,9 @@
14
class VariantCheckTest(unittest.TestCase):
15
16
def identical(self, reference, b):
17
- if type(reference) in [int, long]:
18
- self.assertTrue(type(b) in [int, long])
19
- else:
+ if type(reference) in [int, long]:
+ self.assertTrue(type(b) in [int, long])
+ else:
20
self.assertEquals(type(reference), type(b))
21
if isinstance(reference, list):
22
self.assertEquals(len(reference), len(b))
0 commit comments