We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45b1dcd commit 160419eCopy full SHA for 160419e
pandas/tseries/tests/test_plotting.py
@@ -948,7 +948,7 @@ def test_secondary_y_non_ts_xlim(self):
948
left_after, right_after = ax.get_xlim()
949
950
self.assertEqual(left_before, left_after)
951
- self.assertLess(right_before, right_after)
+ self.assertTrue(right_before < right_after)
952
953
@slow
954
def test_secondary_y_regular_ts_xlim(self):
@@ -964,7 +964,7 @@ def test_secondary_y_regular_ts_xlim(self):
964
965
966
967
968
969
970
def test_secondary_y_mixed_freq_ts_xlim(self):
0 commit comments