Skip to content

Commit

Permalink
test package completion if already imported (JuliaLang#36552)
Browse files Browse the repository at this point in the history
  • Loading branch information
simeonschaub authored Apr 27, 2021
1 parent ff001a4 commit cb22c8e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions stdlib/REPL/test/replcompletions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ let s = "using REP"
@test count(isequal("REPL"), c) == 1
# issue #30234
@test !Base.isbindingresolved(M32377, :tanh)
# check what happens if REPL is already imported
M32377.eval(:(using REPL))
c, r = test_complete_32377(s)
@test count(isequal("REPL"), c) == 1
end

let s = "Comp"
Expand Down

0 comments on commit cb22c8e

Please sign in to comment.