We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5db34a commit c10bfc5Copy full SHA for c10bfc5
pandas/tests/frame/test_misc_api.py
@@ -85,7 +85,7 @@ def test_join_index(self):
85
# outer
86
87
joined = f.join(f2, how='outer')
88
- self..assert_index_equal(joined.index, self.frame.index.sort_values())
+ self.assert_index_equal(joined.index, self.frame.index.sort_values())
89
self.assert_index_equal(joined.columns, expected_columns)
90
91
assertRaisesRegexp(ValueError, 'join method', f.join, f2, how='foo')
0 commit comments