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 <jamie@shareable.org>
This commit is contained in:
parent
b3cf42ed28
commit
22241f3cff
|
@ -473,7 +473,7 @@ mutation {
|
|||
"""
|
||||
result = """
|
||||
{
|
||||
"protocolVersion":63
|
||||
"protocolVersion":65
|
||||
}
|
||||
"""
|
||||
|
||||
|
|
Loading…
Reference in New Issue