Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle irregular and mixed grid types #11

Merged
merged 20 commits into from
Nov 7, 2019
Merged
Prev Previous commit
Next Next commit
fix test typo
  • Loading branch information
rafaqz committed Oct 21, 2019
commit 65889fb6a75874722350052c3948a45c5b898849
2 changes: 1 addition & 1 deletion test/selector.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ end
@test da[X(At(4.0)), Y(At(2.0))] == 5
@test_throws InexactError da[X(At(6.1)), Y(At(8))]
# Indexing directly with grid dims also just works, but maybe shouldn't?
@test da[X(2), Y(2)]
@test da[X(2), Y(2)] == 6
end
end