From e255529da5c2366f1a9c4eb823d3c3d02c237eae Mon Sep 17 00:00:00 2001
From: Viacheslav Kovalev <kovyl2404@gmail.com>
Date: Wed, 22 Apr 2015 18:56:09 +0300
Subject: Get rid of rebar_utils:tup_umerge/2 patching

---
 test/rebar_utils_SUITE.erl | 16 +++-------------
 1 file changed, 3 insertions(+), 13 deletions(-)

(limited to 'test')

diff --git a/test/rebar_utils_SUITE.erl b/test/rebar_utils_SUITE.erl
index 98e7e58..ce26bbc 100644
--- a/test/rebar_utils_SUITE.erl
+++ b/test/rebar_utils_SUITE.erl
@@ -21,8 +21,7 @@
          task_with_flag_with_trailing_comma/1,
          task_with_flag_with_commas/1,
          task_with_multiple_flags/1,
-         special_task_do/1,
-         tup_umerge_deduplication/1]).
+         special_task_do/1]).
 
 -include_lib("common_test/include/ct.hrl").
 -include_lib("eunit/include/eunit.hrl").
@@ -30,8 +29,7 @@
 
 
 all() ->
-    [{group, args_to_tasks},
-      tup_umerge_deduplication
+    [{group, args_to_tasks}
     ].
 
 groups() ->
@@ -120,12 +118,4 @@ special_task_do(_Config) ->
     [{"foo", []}, {"do", ["bar,", "baz"]}] = rebar_utils:args_to_tasks(["foo,",
                                                                         "do",
                                                                         "bar,",
-                                                                        "baz"]).
-
-tup_umerge_deduplication(_Config) ->
-    Old = [{key,c},{key,b},{key,a}],
-    New = [{key, a}],
-    ?assertEqual(
-        [{key, a}, {key, c}, {key, b}],
-        rebar_utils:tup_umerge(New, Old)
-    ).
+                                                                        "baz"]).
\ No newline at end of file
-- 
cgit v1.1