From 3ebf73fdf3e6cc5ca65962ec24f54a8f7e7c7e1d Mon Sep 17 00:00:00 2001 From: JamesWrigley Date: Fri, 17 May 2024 16:26:12 +0200 Subject: [PATCH] Create unsent messages in the tests See: https://github.com/JuliaInterop/ZMQ.jl/issues/166 --- test/runtests.jl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index f07d174..750be1c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -42,11 +42,10 @@ end @test Base.strides(msg) == (1,) # Test similar() and copy() fixes in https://github.com/JuliaInterop/ZMQ.jl/pull/165 - # Note that we have to send this message to work around - # https://github.com/JuliaInterop/ZMQ.jl/issues/166 @test similar(msg, UInt8, 12) isa Vector{UInt8} @test copy(msg) == codeunits("test request") - ZMQ.send(s2, msg) + + ZMQ.send(s2, Message("test request")) @test unsafe_string(ZMQ.recv(s1)) == "test request" ZMQ.send(s1, Message("test response")) @test unsafe_string(ZMQ.recv(s2)) == "test response"