Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: JanuszJakubiec <[email protected]>
  • Loading branch information
pawlooss1 and JanuszJakubiec committed Jun 27, 2023
1 parent 15c3102 commit a14fb58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/adhoc_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ produce_response_full(_C) ->
produce_response_no_session_id(_C) ->
% given
AdhocResponse = #adhoc_response{
session_id = <<"">>
session_id = <<>>
},
% when
#xmlel{
Expand All @@ -134,7 +134,7 @@ produce_response_no_session_id(_C) ->
% then
SessionID = proplists:get_value(<<"sessionid">>, Attrs),
?assert(is_binary(SessionID)),
?assertNotEqual(<<"">>, SessionID).
?assertNotEqual(<<>>, SessionID).

produce_response_no_actions(_C) ->
% given
Expand Down

0 comments on commit a14fb58

Please sign in to comment.