We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5d673f commit 06a87f4Copy full SHA for 06a87f4
pandas/stats/tests/test_ols.py
@@ -693,9 +693,9 @@ def testNonPooled(self):
693
self.checkNonPooled(y=self.panel_y, x=self.panel_x,
694
window_type='rolling', window=25, min_periods=10)
695
def testUnknownWindowType(self):
696
- self.assertRaisesRegexp(ValueError, "window.*ridiculous",
697
- self.checkNonPooled, y=self.panel_y, x=self.panel_x,
698
- window_type='ridiculous', window=25, min_periods=10)
+ assertRaisesRegexp(ValueError, "window.*ridiculous",
+ self.checkNonPooled, y=self.panel_y, x=self.panel_x,
+ window_type='ridiculous', window=25, min_periods=10)
699
700
def checkNonPooled(self, x, y, **kwds):
701
# For now, just check that it doesn't crash
0 commit comments