Skip to content

Commit

Permalink
Update callback test case no longer relying on DataFrame
Browse files Browse the repository at this point in the history
  • Loading branch information
tomyun committed Apr 8, 2024
1 parent 5525f3e commit e438c23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/framework/util/simulate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ using Dates
n = 3
i = 0
f(s, m) = begin
r = m.result[end, :]
@test s.a' == r.a && s.b' == r.b
r = m.result[end]
@test s.a' == r[:a] && s.b' == r[:b]
i += 1
end
simulate(SSimulateCallback, stop=n, callback=f)
Expand Down

0 comments on commit e438c23

Please sign in to comment.