From: Michael Stapelberg Date: Sat, 21 Aug 2010 16:25:48 +0000 (+0200) Subject: t/22-split: Bugfix: don’t declare old_count twice (Thanks Lourens) X-Git-Tag: tree-pr1~140 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=27ffe9eae13708a44a3c79616b00f8aa992acc0f;p=i3%2Fi3 t/22-split: Bugfix: don’t declare old_count twice (Thanks Lourens) --- diff --git a/testcases/t/22-split.t b/testcases/t/22-split.t index eca8a4a5..f3942243 100644 --- a/testcases/t/22-split.t +++ b/testcases/t/22-split.t @@ -85,7 +85,7 @@ my $old_count = sum_nodes(\@content); $i3->command('split v')->recv; @content = @{get_ws_content($tmp)}; -my $old_count = sum_nodes(\@content); +$old_count = sum_nodes(\@content); $i3->command('split v')->recv;