summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLuis Rascao <luis.rascao@miniclip.com>2015-08-24 10:36:10 +0100
committerLuis Rascao <luis.rascao@miniclip.com>2015-08-24 10:36:10 +0100
commit41650ae66b4305b2f1638556e7126b536b86cb08 (patch)
treea3eff716d3733fbd52b1710f96de4d172cc50a0d /test
parent6cc18c931cdeec68f50708fdc7638e13611b825d (diff)
downloadrebar-41650ae66b4305b2f1638556e7126b536b86cb08.tar.gz
Fix eunit test on OTP18
OTP18 changed the output failed assertion string from assertEqual_failed to assertEqual
Diffstat (limited to 'test')
-rw-r--r--test/rebar_eunit_tests.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rebar_eunit_tests.erl b/test/rebar_eunit_tests.erl
index 33f168c..a7fc51e 100644
--- a/test/rebar_eunit_tests.erl
+++ b/test/rebar_eunit_tests.erl
@@ -131,7 +131,7 @@ eunit_with_suites_and_tests_test_() ->
{"Selected suite's generator test raises an error",
?_assert(string:str(RebarOut,
- "assertEqual_failed") =/= 0)},
+ "assertEqual") =/= 0)},
{"Selected suite tests is run once",
?_assert(string:str(RebarOut, "Failed: 1.") =/= 0)}]