Skip to content

Commit

Permalink
fix failing test by concatenating headers with a comma and space
Browse files Browse the repository at this point in the history
  • Loading branch information
andreineculau committed Sep 26, 2015
1 parent 3ba593f commit 33d369b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/katt_callbacks.erl
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ validate_headers( #katt_response{headers=E0}

concatenate_header(Header, Headers) ->
Values = proplists:get_all_values(Header, Headers),
string:join(Values, ",").
string:join(Values, ", ").

%% Bodies are also allowed to be a superset of expected body, if the parseFun
%% returns a structure.
Expand Down

0 comments on commit 33d369b

Please sign in to comment.