Skip to content

Commit b845652

Browse files
author
Evan Samanas
committed
Merge pull request #77 from ylow/master
tabs --> spaces
2 parents 4f224bf + c464af6 commit b845652

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

oss_src/unity/python/sframe/test/test_extensions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
class VariantCheckTest(unittest.TestCase):
1515

1616
def identical(self, reference, b):
17-
if type(reference) in [int, long]:
18-
self.assertTrue(type(b) in [int, long])
19-
else:
17+
if type(reference) in [int, long]:
18+
self.assertTrue(type(b) in [int, long])
19+
else:
2020
self.assertEquals(type(reference), type(b))
2121
if isinstance(reference, list):
2222
self.assertEquals(len(reference), len(b))

0 commit comments

Comments
 (0)