Skip to content

Commit

Permalink
add tests for range arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDanisch committed Oct 2, 2024
1 parent 25927e7 commit c1f25bf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ReferenceTests/src/tests/examples2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1543,6 +1543,10 @@ end
ax3, pl3 = heatmap(f[2, 1], Resampler(data2))
ax4, pl4 = heatmap(f[2, 2], Resampler(data2))
limits!(ax4, 3000, 3090, 3460, 3500)
heatmap(f[3, 1], (1000, 2000), (500, 1000), Resampler(data2))
ax = Axis(f[3, 2])
limits!(ax, (0, 1), (0, 1))
heatmap!(ax, (1, 2), (1, 2), Resampler(data2))
Colorbar(f[:, 3], pl1)
sleep(1) # give the async operations some time
f
Expand Down

0 comments on commit c1f25bf

Please sign in to comment.