summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-06-09 00:08:47 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-06-10 08:42:44 +0200
commit75391045cf4863a56f6e06928d9095ceaddecd01 (patch)
treed3e96f8493cc7c8f0ff45e07424a027223caa859 /tests
parent30e50de53e7093726525544a7b79540d5a0f2507 (diff)
downloadcurl-75391045cf4863a56f6e06928d9095ceaddecd01.tar.gz
test1594/1595/1596: fix to work in hyper mode
Closes #7209
Diffstat (limited to 'tests')
-rw-r--r--tests/data/test15942
-rw-r--r--tests/data/test15952
-rw-r--r--tests/data/test15962
-rw-r--r--tests/libtest/lib1594.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/tests/data/test1594 b/tests/data/test1594
index 5c8505030..a93f89d37 100644
--- a/tests/data/test1594
+++ b/tests/data/test1594
@@ -43,7 +43,7 @@ Accept: */*
</protocol>
<stdout>
-Retry-After: 22
+Retry-After 22
</stdout>
</verify>
</testcase>
diff --git a/tests/data/test1595 b/tests/data/test1595
index bdc6ce24d..4dade7c19 100644
--- a/tests/data/test1595
+++ b/tests/data/test1595
@@ -42,7 +42,7 @@ Accept: */*
</protocol>
<stdout>
-Retry-After: 0
+Retry-After 0
</stdout>
</verify>
</testcase>
diff --git a/tests/data/test1596 b/tests/data/test1596
index 59121d27e..f05f0ec14 100644
--- a/tests/data/test1596
+++ b/tests/data/test1596
@@ -43,7 +43,7 @@ Accept: */*
</protocol>
<stdout>
-Retry-After: 172066
+Retry-After 172066
</stdout>
</verify>
</testcase>
diff --git a/tests/libtest/lib1594.c b/tests/libtest/lib1594.c
index 4385c6044..102e0a7d7 100644
--- a/tests/libtest/lib1594.c
+++ b/tests/libtest/lib1594.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -53,7 +53,7 @@ int test(char *URL)
retry += time(NULL);
retry /= 10000;
#endif
- printf("Retry-After: %" CURL_FORMAT_CURL_OFF_T "\n", retry);
+ printf("Retry-After %" CURL_FORMAT_CURL_OFF_T "\n", retry);
test_cleanup: