Skip to content

Commit

Permalink
Merge pull request #230 from JuliaInterop/unsent-msg
Browse files Browse the repository at this point in the history
Create unsent messages in the tests
  • Loading branch information
JamesWrigley authored May 20, 2024
2 parents 03cf2c1 + 3ebf73f commit 15915aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 15915aa

Please sign in to comment.