From e3d3496d0c4ff1c63340e159b177bb10b60e70df Mon Sep 17 00:00:00 2001 From: Daniel Molina Date: Sat, 13 Jul 2024 13:31:40 +0200 Subject: [PATCH] Update runtests.jl Update to fix the error with Windows systems. --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index b96b74e..8d07bc5 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -181,6 +181,6 @@ end @testset "testCodeloc" begin output = test_evalfile("fileandline.jl", port=3011) l = split(output) - @test endswith(l[1], "/test/fileandline.jl") + @test endswith(l[1], joinpath("test", "fileandline.jl")) @test l[2] == "7" end