修复 WS 订阅格式:type=subscribe channel=market 对齐官方文档

This commit is contained in:
2569718930@qq.com
2026-05-25 07:48:14 +08:00
parent c2c7d428bf
commit 5566894e84
2 changed files with 7 additions and 10 deletions
+4 -4
View File
@@ -113,12 +113,12 @@ def test_ws_cache_subscription_payloads_match_market_channel_shape():
asyncio.run(cache._send_subscription(ws, ["asset-2"], initial=False))
assert ws.messages[0] == {
"type": "market",
"type": "subscribe",
"channel": "market",
"assets_ids": ["asset-1"],
"custom_feature_enabled": True,
}
assert ws.messages[1] == {
"operation": "subscribe",
"type": "subscribe",
"channel": "market",
"assets_ids": ["asset-2"],
"custom_feature_enabled": True,
}