Skip to content

Commit

Permalink
Merge pull request #1040 from j-grana6/maintenance/0.5.x
Browse files Browse the repository at this point in the history
TST: Fixed test for Anaconda on Windows.  Closes #1028.
  • Loading branch information
jseabold committed Aug 14, 2013
2 parents fa4d6dd + 4ec2833 commit cbc0a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsmodels/emplike/tests/test_regression.py
Expand Up @@ -145,7 +145,7 @@ def test_ci_beta1(self):
assert_almost_equal(beta1ci, self.res2.test_ci_beta1, 6)

def test_ci_beta2(self):
beta2ci = self.res1.conf_int_el(2, method='nm')
beta2ci = self.res1.conf_int_el(2, lower_bound=.59, upper_bound=2.2, method='nm')
assert_almost_equal(beta2ci, self.res2.test_ci_beta2, 6)

def test_ci_beta3(self):
Expand Down

0 comments on commit cbc0a45

Please sign in to comment.