Skip to content

Commit f58126f

Browse files
committed
BUG: fix pep8 formatting, close #948
1 parent 8cd25ba commit f58126f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/test_index.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -423,9 +423,9 @@ def test_boolean_cmp(self):
423423
idx = Index(values)
424424
res = (idx == values)
425425

426-
self.assert_( res.all() )
427-
self.assert_( res.dtype == 'bool' )
428-
self.assert_( not isinstance(res, Index) )
426+
self.assert_(res.all())
427+
self.assert_(res.dtype == 'bool')
428+
self.assert_(not isinstance(res, Index))
429429

430430
class TestInt64Index(unittest.TestCase):
431431

0 commit comments

Comments
 (0)