Skip to content

Commit 30c3f74

Browse files
author
oscarddssmith
committed
fix test
1 parent eefbdc5 commit 30c3f74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/downstream/ensemble_multi_prob.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ for i in 1:3
2222
@test sol[y, :][i] == sol[i][y]
2323
end
2424
# Ensemble is a recursive array
25-
@test Matrix(sol(0.0, idxs=[x])) == sol[1:1, 1, :] == Matrix(first(eachrow(sol[x, :]))')
25+
@test only.(sol(0.0, idxs=[x])) == sol[1, 1, :] == first.(sol[x, :])
2626
# TODO: fix the interpolation
27-
@test vec(sol(1.0, idxs=[x])) last.(sol[x, :].u)
27+
@test only.(sol(1.0, idxs=[x])) last.(sol[x, :])

0 commit comments

Comments
 (0)