Browse Source

Add a comment on a test

Loïc Hoguin 10 years ago
parent
commit
515f573281
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cow_cookie.erl

+ 1 - 1
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].