summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Test/MockLocalconfig.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Test/MockLocalconfig.pm')
-rw-r--r--Bugzilla/Test/MockLocalconfig.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Test/MockLocalconfig.pm b/Bugzilla/Test/MockLocalconfig.pm
index a32aea0d4..080fdeef8 100644
--- a/Bugzilla/Test/MockLocalconfig.pm
+++ b/Bugzilla/Test/MockLocalconfig.pm
@@ -10,9 +10,9 @@ use strict;
use warnings;
sub import {
- my ($class, %lc) = @_;
- $ENV{LOCALCONFIG_ENV} = 'BMO';
- $ENV{"BMO_$_"} = $lc{$_} for keys %lc;
+ my ($class, %lc) = @_;
+ $ENV{LOCALCONFIG_ENV} = 'BMO';
+ $ENV{"BMO_$_"} = $lc{$_} for keys %lc;
}
1;