We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3243a0 commit 0432ea3Copy full SHA for 0432ea3
test/file.jl
@@ -1610,7 +1610,7 @@ end
1610
f, io = mktemp()
1611
s = stat(f)
1612
stat_show_str = sprint(show, s)
1613
- @test occursin(f, stat_show_str)
+ @test occursin(repr(f), stat_show_str)
1614
if Sys.iswindows()
1615
@test occursin("mode: 0o100666 (-rw-rw-rw-)", stat_show_str)
1616
else
@@ -1623,7 +1623,7 @@ end
1623
d = mktempdir()
1624
s = stat(d)
1625
1626
- @test occursin(d, stat_show_str)
+ @test occursin(repr(d), stat_show_str)
1627
1628
@test occursin("mode: 0o040666 (drw-rw-rw-)", stat_show_str)
1629
0 commit comments