Skip to content

Commit 0eb0199

Browse files
committed
Fix test for new exact signature
1 parent 38aea8d commit 0eb0199

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/transport/test_common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@ def test_simple_send_message():
212212

213213
ct.send(mock.sentinel.destination, mock.sentinel.message)
214214

215-
ct._send.assert_called_with(mock.sentinel.destination, mock.sentinel.message)
215+
ct._send.assert_called_with(
216+
mock.sentinel.destination, mock.sentinel.message, headers=None
217+
)
216218

217219

218220
def test_simple_broadcast_message():

0 commit comments

Comments
 (0)