Skip to content

Commit 98ef664

Browse files
make tests robust to windows
1 parent 299f2e4 commit 98ef664

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/Profile/test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,10 @@ import InteractiveUtils
213213
ioc = IOContext(io, :displaysize=>(1000,1000))
214214
Profile.print(ioc, C=true)
215215
str = String(take!(io))
216-
@test occursin("@Compiler/src/", str)
216+
@test occursin("@Compiler/", str)
217217
@test occursin("@Base/", str)
218-
@test occursin("@InteractiveUtils/src/", str)
219-
@test occursin("@LinearAlgebra/src/", str)
218+
@test occursin("@InteractiveUtils/", str)
219+
@test occursin("@LinearAlgebra/", str)
220220
@test occursin("@juliasrc/", str)
221221
@test occursin("@julialib/", str)
222222
end

0 commit comments

Comments
 (0)