diff options
author | jake%acutex.net <> | 2009-03-01 04:03:09 +0000 |
---|---|---|
committer | jake%acutex.net <> | 2009-03-01 04:03:09 +0000 |
commit | 743c714d0a0e5cadf450dcbf027139db30bbef03 (patch) | |
tree | 510ff1d5e39ff78df16f0c4eb891ab6ee7a822b0 /t | |
parent | Bug 103664 - Tests should "use strict;" and not contain any tabs. We should ... (diff) | |
download | bugzilla-743c714d0a0e5cadf450dcbf027139db30bbef03.tar.gz bugzilla-743c714d0a0e5cadf450dcbf027139db30bbef03.tar.bz2 bugzilla-743c714d0a0e5cadf450dcbf027139db30bbef03.zip |
Don't rely on the TEST_VERBOSE environment variable (no longer exported from runtests.sh) and instead print to the TESTOUT file handle pulled in from Test::More. This will allow the testing backend to check for verbosity rather than having to handle it in the .t files.
Diffstat (limited to 't')
-rw-r--r-- | t/005whitespace.t | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/t/005whitespace.t b/t/005whitespace.t index 66b2af5d6..e420baaaa 100644 --- a/t/005whitespace.t +++ b/t/005whitespace.t @@ -32,7 +32,6 @@ BEGIN { use Test::More tests => $tests; } use strict; my @testitems = @Support::Files::testitems; -my $verbose = $::ENV{TEST_VERBOSE}; foreach my $file (@testitems) { open (FILE, "$file"); |