diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2016-11-17 01:04:00 -0500 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2016-11-17 01:04:00 -0500 |
commit | 2ece147cc216b470023448ddcc7f5359465998b2 (patch) | |
tree | 167e6967e8a0bc82bb40f6a8b8c424af9697e95c | |
parent | a4d888857ede39a8e2aa5f961048c6362d3a5377 (diff) | |
download | curl-2ece147cc216b470023448ddcc7f5359465998b2.tar.gz |
tests: Fix HTTP2-Settings header for huge window size
Follow-up to a4d8888. Changing the window size in that commit resulted
in a different HTTP2-Settings upgrade header, causing test 1800 to fail.
-rw-r--r-- | tests/data/test1800 | 2 | ||||
-rw-r--r-- | tests/data/test1801 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/data/test1800 b/tests/data/test1800 index 96a6c1461..0a2bb1f6d 100644 --- a/tests/data/test1800 +++ b/tests/data/test1800 @@ -48,7 +48,7 @@ Host: %HOSTIP:%HTTPPORT Accept: */*
Connection: Upgrade, HTTP2-Settings
Upgrade: %H2CVER
-HTTP2-Settings: AAMAAABkAAQAAP__
+HTTP2-Settings: AAMAAABkAARAAAAA
</protocol> </verify> diff --git a/tests/data/test1801 b/tests/data/test1801 index 16ee12d42..9e1900b9e 100644 --- a/tests/data/test1801 +++ b/tests/data/test1801 @@ -58,7 +58,7 @@ Host: %HOSTIP:%HTTPPORT Accept: */*
Connection: Upgrade, HTTP2-Settings
Upgrade: %H2CVER
-HTTP2-Settings: AAMAAABkAAQAAP__
+HTTP2-Settings: AAMAAABkAARAAAAA
</protocol> # CURLE_HTTP2: Send failure: Broken pipe |