aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/TestAppProve.pm
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2017-10-04 18:05:33 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2017-10-10 23:16:14 +0100
commit6f0ee01f37029c0fdabd161646b8dbbdec676165 (patch)
treeffd43cc0f02a6dd7cda3afc607a64e0de3a85a5c /perllib/FixMyStreet/TestAppProve.pm
parent328e1933d1ada8b99bc69c15c7cdb01f3ce04a1d (diff)
Upgrade commonlib to read in config as Unicode.
This means variables do not need decoding in a few places.
Diffstat (limited to 'perllib/FixMyStreet/TestAppProve.pm')
-rw-r--r--perllib/FixMyStreet/TestAppProve.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/TestAppProve.pm b/perllib/FixMyStreet/TestAppProve.pm
index 7a387547d..d549b0148 100644
--- a/perllib/FixMyStreet/TestAppProve.pm
+++ b/perllib/FixMyStreet/TestAppProve.pm
@@ -86,8 +86,8 @@ sub run {
$config->{FMS_DB_PASS} = '';
}
- my $config_out = "general-test-autogenerated.$$";
- path("conf/$config_out.yml")->spew( YAML::Dump($config) );
+ my $config_out = "general-test-autogenerated.$$.yml";
+ path("conf/$config_out")->spew( YAML::Dump($config) );
local $ENV{FMS_OVERRIDE_CONFIG} = $config_out;