diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cow_cookie.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cow_cookie.erl b/src/cow_cookie.erl index 6db89be..02df65e 100644 --- a/src/cow_cookie.erl +++ b/src/cow_cookie.erl @@ -155,7 +155,7 @@ parse_cookie_test_() -> {<<"foo=\\\";;bar=good ">>, [{<<"foo">>, <<"\\\"">>}, {<<"bar">>, <<"good">>}]}, {<<"foo=\"\\\";bar">>, {error, badarg}}, - {<<>>, []}, + {<<>>, []}, %% Flash player. {<<"foo=bar , baz=wibble ">>, [{<<"foo">>, <<"bar , baz=wibble">>}]} ], [{V, fun() -> R = parse_cookie(V) end} || {V, R} <- Tests]. |