From 620f88afcf0806fe5e522887f224ac608b28ffd8 Mon Sep 17 00:00:00 2001
From: Richard Hartmann <richih@debian.org>
Date: Mon, 18 May 2015 09:07:13 +0200
Subject: [PATCH] t/300-add.t: Fix warning

t/300-add.t ........ "my" variable $output masks earlier declaration in
same scope at t/300-add.t line 32.
---
 t/300-add.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/300-add.t b/t/300-add.t
index bec8e7d..4acd0a2 100644
--- a/t/300-add.t
+++ b/t/300-add.t
@@ -29,7 +29,7 @@ A  a
 
 ", 'Adding a file works';
 
-my $output = `.././vcsh status --terse`;
+$output = `.././vcsh status --terse`;
 
 ok $output eq "test1:
 A  a
-- 
GitLab