Skip to content

Commit 050c77b

Browse files
committed
Typo.
1 parent 56b0a3c commit 050c77b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/tests/test_models_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def assertMatrixLabels(self, m, l, mt=None, lt=None):
1919
assert l == list(lt or self.data.columns)
2020

2121
def test_numpy_init(self):
22-
m, l = utils.any_to_tensor_and_labels(self.data.values
22+
m, l = utils.any_to_tensor_and_labels(self.data.values)
2323
self.assertMatrixLabels(m, l, lt=['x0', 'x1'])
2424
m, l = utils.any_to_tensor_and_labels(self.data.values, labels=['x2', 'x3'])
2525
self.assertMatrixLabels(m, l, lt=['x2', 'x3'])

0 commit comments

Comments
 (0)