From 4a403d39bd4a3153d258eb39c03208c366584dec Mon Sep 17 00:00:00 2001 From: nhz2 Date: Thu, 17 Oct 2024 15:05:52 -0400 Subject: [PATCH] fix REPL test if a "juliadev" directory exists in home --- stdlib/REPL/test/replcompletions.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/REPL/test/replcompletions.jl b/stdlib/REPL/test/replcompletions.jl index 8bee70226755f..777017b12a6cf 100644 --- a/stdlib/REPL/test/replcompletions.jl +++ b/stdlib/REPL/test/replcompletions.jl @@ -1341,9 +1341,9 @@ mktempdir() do path end # Test tilde path completion -let (c, r, res) = test_complete("\"~/julia") +let (c, r, res) = test_complete("\"~/ka8w5rsz") if !Sys.iswindows() - @test res && c == String[homedir() * "/julia"] + @test res && c == String[homedir() * "/ka8w5rsz"] else @test !res end