Skip to content

Commit 5cc5240

Browse files
authored
Fix quicktest error (#7028)
A mistake in #6795 that breaks quicktest.
2 parents 63b9697 + d82c99e commit 5cc5240

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ocaml/quicktest/quicktest_http.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module Cookies = struct
102102
match body with
103103
| first_line :: _ ->
104104
D.warn "expected = [%s]; received = [%s]" expected first_line ;
105-
Astring.String.is_infix ~affix:first_line expected
105+
Astring.String.is_infix ~affix:expected first_line
106106
| _ ->
107107
false
108108
in

0 commit comments

Comments
 (0)