test: update api ping protocol version

This commit is contained in:
Ogulcan Celik 2026-05-13 14:40:00 +03:00
parent 4600309051
commit f7b6467afe
1 changed files with 3 additions and 1 deletions

View File

@ -225,7 +225,9 @@ fn ping_over_socket_returns_version() {
assert_eq!(value["id"], "req_1");
assert_eq!(value["result"]["type"], "pong");
assert_eq!(value["result"]["version"], env!("CARGO_PKG_VERSION"));
assert_eq!(value["result"]["protocol"], 4);
// Intentionally hardcoded so wire protocol bumps require updating this test.
// Changing this value means old clients/servers are no longer compatible.
assert_eq!(value["result"]["protocol"], 5);
cleanup_spawned_herdr(child, base);
}