From 318621382f27aafc03d9bb4a6e454ea2b502785b Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Mon, 3 Jun 2019 12:32:01 -0400 Subject: [PATCH] fix LibGit2 test: unknown repo now returns ERROR instead of EAUTH (#32219) (cherry picked from commit 4d7e78b7184638bcafaf8671bbd2b4d191a8492d) --- stdlib/LibGit2/test/online.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/LibGit2/test/online.jl b/stdlib/LibGit2/test/online.jl index 7c7029d3f064c..108143b3382f3 100644 --- a/stdlib/LibGit2/test/online.jl +++ b/stdlib/LibGit2/test/online.jl @@ -68,7 +68,7 @@ mktempdir() do dir error("unexpected") catch ex @test isa(ex, LibGit2.Error.GitError) - @test ex.code == LibGit2.Error.EAUTH + @test ex.code == LibGit2.Error.ERROR end Base.shred!(cred) end