Skip to content

Commit f05997a

Browse files
Update test/runners.jl
Co-authored-by: Mosè Giordano <[email protected]>
1 parent f043134 commit f05997a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runners.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ end
325325

326326
@testset "outptut runner" begin
327327
io = IOBuffer()
328-
run_interactive(BinaryBuilderBase.preferred_runner()(mktempdir(); platform=Platform("x86_64", "linux"; libc="musl")), `/bin/bash -c "echo \$PATH"`, stdout=io)
328+
run_interactive(BinaryBuilderBase.preferred_runner()(mktempdir(); platform=Platform("x86_64", "linux"; libc="musl")), `/bin/bash -c "echo hello world"`, stdout=io)
329329
s = String(take!(io))
330-
@test !isempty(s)
330+
@test s == "hello world\n"
331331
end

0 commit comments

Comments
 (0)