Skip to content

Commit

Permalink
Fix doctests for Julia 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Dec 29, 2023
1 parent f0bacf7 commit ae470f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ println(result)
# output
NamedTuple{(:Name, :Friendcount), Tuple{String, Int64}}[(Name = "John", Friendcount = 3)]
@NamedTuple{Name::String, Friendcount::Int64}[(Name = "John", Friendcount = 3)]
```

## IndexedTables
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,6 @@ include("test_macros.jl")
# Int32 otherwise. Also only run on Julia 1.6 and newer, because
# a lot of output printing was changed and doctests now can't be written
# to work on multiple Julia versions.
Int==Int64 && VERSION>=v"1.6" && doctest(Query)
Int==Int64 && VERSION>=v"1.10" && doctest(Query)

end

0 comments on commit ae470f1

Please sign in to comment.