File tree 2 files changed +1
-13
lines changed
2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ like `setindex!` and `getindex!` rather than directly accessing `vnv.vals`.
109
109
110
110
```jldoctest varnamedvector-struct
111
111
julia> vnv[@varname(x)]
112
- 2-element Vector{Float64 }:
112
+ 2-element Vector{Real }:
113
113
46.0
114
114
48.0
115
115
Original file line number Diff line number Diff line change @@ -91,18 +91,6 @@ include("test_util.jl")
91
91
recursive= true ,
92
92
)
93
93
doctestfilters = [
94
- # Older versions will show "0 element Array" instead of "Type[]".
95
- r" (Any\[\] |0-element Array{.+,[0-9]+})" ,
96
- # Older versions will show "Array{...,1}" instead of "Vector{...}".
97
- r" (Array{.+,\s ?1}|Vector{.+})" ,
98
- # Older versions will show "Array{...,2}" instead of "Matrix{...}".
99
- r" (Array{.+,\s ?2}|Matrix{.+})" ,
100
- # Errors from macros sometimes result in `LoadError: LoadError:`
101
- # rather than `LoadError:`, depending on Julia version.
102
- r" ERROR: (LoadError:\s )+" ,
103
- # Older versions do not have `;;]` but instead just `]` at end of the line
104
- # => need to treat `;;]` and `]` as the same, i.e. ignore them if at the end of a line
105
- r" (;;){0,1}\] $" m ,
106
94
# Ignore the source of a warning in the doctest output, since this is dependent on host.
107
95
# This is a line that starts with "└ @ " and ends with the line number.
108
96
r" └ @ .+:[0-9]+" ,
You can’t perform that action at this time.
0 commit comments