Skip to content

Commit e3d3496

Browse files
authoredJul 13, 2024··
Update runtests.jl
Update to fix the error with Windows systems.
1 parent 1adc42b commit e3d3496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,6 @@ end
181181
@testset "testCodeloc" begin
182182
output = test_evalfile("fileandline.jl", port=3011)
183183
l = split(output)
184-
@test endswith(l[1], "/test/fileandline.jl")
184+
@test endswith(l[1], joinpath("test", "fileandline.jl"))
185185
@test l[2] == "7"
186186
end

0 commit comments

Comments
 (0)
Please sign in to comment.