File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1095,7 +1095,7 @@ const issue639report = []
1095
1095
@test get_docstring (ds) == " f"
1096
1096
@test ChangeDocstring. g () == 1
1097
1097
ds = @doc (ChangeDocstring. g)
1098
- @test get_docstring (ds) == " No documentation found."
1098
+ @test get_docstring (ds) in ( " No documentation found." , " No documentation found for private symbol. " )
1099
1099
# Ordinary route
1100
1100
write (joinpath (dn, " ChangeDocstring.jl" ), """
1101
1101
module ChangeDocstring
@@ -1135,7 +1135,7 @@ const issue639report = []
1135
1135
sleep (mtimedelay)
1136
1136
@test FirstDocstring. g () == 1
1137
1137
ds = @doc (FirstDocstring. g)
1138
- @test get_docstring (ds) == " No documentation found."
1138
+ @test get_docstring (ds) in ( " No documentation found." , " No documentation found for private symbol. " )
1139
1139
write (joinpath (dn, " FirstDocstring.jl" ), """
1140
1140
module FirstDocstring
1141
1141
"g" g() = 1
You can’t perform that action at this time.
0 commit comments