From 22241f3cffd24252e822a6ca85fce3b729879479 Mon Sep 17 00:00:00 2001 From: Jamie Lokier Date: Thu, 22 Jul 2021 20:15:02 +0100 Subject: [PATCH] GraphQL: Update `protocolVersion` expected result to hard-coded 65 Use a hard-coded number instead of the same expression as the client, so that bugs introduced via that expression are detected. Using the same expression as the client can hide issues when the value is wrong in both places. When the expected value genuinely changes, it'll be obvious. Just change this number. Signed-off-by: Jamie Lokier --- tests/graphql/queries.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/graphql/queries.toml b/tests/graphql/queries.toml index 05436fc1e..8e3345542 100644 --- a/tests/graphql/queries.toml +++ b/tests/graphql/queries.toml @@ -473,7 +473,7 @@ mutation { """ result = """ { - "protocolVersion":63 + "protocolVersion":65 } """