Skip to content

Commit ae592db

Browse files
committed
Edit assignment of beta in test_robustlq.py.
1 parent 8b71494 commit ae592db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quantecon/tests/test_robustlq.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def setUp(self):
4646

4747
# the *_pf endings refer to an example with pure forecasting
4848
# (see p171 in Robustness)
49-
self.rblq_test = RBLQ(Q, R, A, B, C, beta=beta, theta=theta)
50-
self.rblq_test_pf = RBLQ(Q_pf, R, A, B_pf, C, beta=beta, theta=theta)
49+
self.rblq_test = RBLQ(Q, R, A, B, C, beta, theta)
50+
self.rblq_test_pf = RBLQ(Q_pf, R, A, B_pf, C, beta, theta)
5151
self.lq_test = LQ(Q, R, A, B, C, beta=beta)
5252
self.methods = ['doubling', 'qz']
5353

0 commit comments

Comments
 (0)