summaryrefslogtreecommitdiff
path: root/test/rebar_test_utils.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/rebar_test_utils.erl')
-rw-r--r--test/rebar_test_utils.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/rebar_test_utils.erl b/test/rebar_test_utils.erl
index ed494a5..eb11280 100644
--- a/test/rebar_test_utils.erl
+++ b/test/rebar_test_utils.erl
@@ -113,7 +113,8 @@ check_results(AppDir, Expected) ->
false ->
error({app_not_found, Name});
{Name, App} ->
- ?assertEqual(Vsn, rebar_app_info:original_vsn(App))
+ ?assertEqual(iolist_to_binary(Vsn),
+ iolist_to_binary(rebar_app_info:original_vsn(App)))
end
end, Expected).