From c464af6c2cb9f6a72758c2a5c0e3acf6b28bb891 Mon Sep 17 00:00:00 2001 From: Yucheng Low Date: Tue, 3 Nov 2015 15:29:39 -0800 Subject: [PATCH] tabs --> spaces --- oss_src/unity/python/sframe/test/test_extensions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oss_src/unity/python/sframe/test/test_extensions.py b/oss_src/unity/python/sframe/test/test_extensions.py index ebb966c9..23efddf6 100644 --- a/oss_src/unity/python/sframe/test/test_extensions.py +++ b/oss_src/unity/python/sframe/test/test_extensions.py @@ -14,9 +14,9 @@ class VariantCheckTest(unittest.TestCase): def identical(self, reference, b): - if type(reference) in [int, long]: - self.assertTrue(type(b) in [int, long]) - else: + if type(reference) in [int, long]: + self.assertTrue(type(b) in [int, long]) + else: self.assertEquals(type(reference), type(b)) if isinstance(reference, list): self.assertEquals(len(reference), len(b))