Skip to content

Commit

Permalink
test: mark tests involving independent variable as Symbol as broken
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Jul 25, 2024
1 parent ad62ea9 commit 05d1a64
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/downstream/integrator_indexing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,13 @@ for idxs in [
idxs = map(idxs) do i
hasname(i) ? getname(i) : i
end
plot(sol, idxs)
if any(==(:t), idxs)
@test_broken plot(sol; idxs)
else
plot(sol; idxs)
end
elseif hasname(idxs)
plot(sol, idxs=getname(idxs))
plot(sol; idxs=getname(idxs))
end
end

Expand Down

0 comments on commit 05d1a64

Please sign in to comment.