Skip to content

Commit e459c90

Browse files
yyccliHwwwwwwwH
authored andcommitted
[MISC] fix typo in kv transfer send recv test (vllm-project#11983)
Signed-off-by: hzh <[email protected]>
1 parent d12c0de commit e459c90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/kv_transfer/test_send_recv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ def test_run(my_rank, pipe):
2222
x2 = pipe.recv_tensor()
2323
print(f"rank {my_rank} received x2 = ", x2)
2424
y2 = pipe.recv_tensor()
25-
print(f"rank {my_rank} received y2 = ", x2)
25+
print(f"rank {my_rank} received y2 = ", y2)
2626

2727
else:
2828
x2 = pipe.recv_tensor()
2929
print(f"rank {my_rank} received x2 = ", x2)
3030
y2 = pipe.recv_tensor()
31-
print(f"rank {my_rank} received y2 = ", x2)
31+
print(f"rank {my_rank} received y2 = ", y2)
3232
pipe.send_tensor(x)
3333
print(f"rank {my_rank} sent tensor x")
3434
pipe.send_tensor(y)

0 commit comments

Comments
 (0)