We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59cfef0 commit 6ad83f6Copy full SHA for 6ad83f6
pymc3/tests/test_model_helpers.py
@@ -80,7 +80,7 @@ def test_pandas_to_array(self):
80
# Check function behavior with Theano graph variable
81
theano_output = func(theano_graph_input)
82
assert isinstance(theano_output, theano.graph.basic.Variable)
83
- assert theano_output == theano_graph_input
+ npt.assert_allclose(theano_output.eval(), theano_graph_input.eval())
84
assert theano_output.owner.inputs[0].name == input_name
85
86
# Check function behavior with generator data
0 commit comments