Skip to content

Commit

Permalink
Merge pull request #346 from queryverse/fix-doctests
Browse files Browse the repository at this point in the history
Fix doctests for Julia 1.10
  • Loading branch information
davidanthoff authored Dec 29, 2023
2 parents f0bacf7 + ae470f1 commit fc3afff
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 fc3afff

Please sign in to comment.