diff options
author | Abhishek Kumar <abhishekkumar8222@gmail.com> | 2020-02-24 14:38:14 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-02-24 22:15:04 +0100 |
commit | ffe005576ac2bd46021fc80112ba7e8e0ab5dd10 (patch) | |
tree | f2c384d7aa7350d176bb31814a8f257355a93d4d /t/t4215-log-skewed-merges.sh | |
parent | lib-log-graph: consolidate test_cmp_graph logic (diff) | |
download | git-ffe005576ac2bd46021fc80112ba7e8e0ab5dd10.tar.xz git-ffe005576ac2bd46021fc80112ba7e8e0ab5dd10.zip |
lib-log-graph: consolidate colored graph cmp logic
Signed-off-by: Abhishek Kumar <abhishekkumar8222@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4215-log-skewed-merges.sh')
-rwxr-xr-x | t/t4215-log-skewed-merges.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/t/t4215-log-skewed-merges.sh b/t/t4215-log-skewed-merges.sh index e1e94176da..28d0779a8c 100755 --- a/t/t4215-log-skewed-merges.sh +++ b/t/t4215-log-skewed-merges.sh @@ -305,9 +305,7 @@ test_expect_success 'log --graph with multiple tips and colors' ' <BLUE>|<RESET><BLUE>/<RESET> * 6_A EOF - git log --color=always --graph --date-order --pretty=tformat:%s 6_1 6_3 6_5 >actual.colors.raw && - test_decode_color <actual.colors.raw | sed "s/ *\$//" >actual.colors && - test_cmp expect.colors actual.colors + lib_test_cmp_colored_graph --date-order --pretty=tformat:%s 6_1 6_3 6_5 ' test_expect_success 'log --graph with multiple tips' ' |