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 eefbdc5 commit 30c3f74Copy full SHA for 30c3f74
test/downstream/ensemble_multi_prob.jl
@@ -22,6 +22,6 @@ for i in 1:3
22
@test sol[y, :][i] == sol[i][y]
23
end
24
# Ensemble is a recursive array
25
-@test Matrix(sol(0.0, idxs=[x])) == sol[1:1, 1, :] == Matrix(first(eachrow(sol[x, :]))')
+@test only.(sol(0.0, idxs=[x])) == sol[1, 1, :] == first.(sol[x, :])
26
# TODO: fix the interpolation
27
-@test vec(sol(1.0, idxs=[x])) ≈ last.(sol[x, :].u)
+@test only.(sol(1.0, idxs=[x])) ≈ last.(sol[x, :])
0 commit comments