diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-04-22 16:48:57 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-05-18 12:57:52 +0100 |
commit | 1a1bfff12415a7793fee22bcd4e5e39e10dbd4d3 (patch) | |
tree | 6313f583e4e278ad3fb2885b8bd0493bd429b23c /t/app | |
parent | 66d93ceaed9df6ff3e0e28a62e655ad769c99614 (diff) |
Fallback if request to Gaze fails.
Fixes #1286.
Diffstat (limited to 't/app')
-rw-r--r-- | t/app/load_general_config.t | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/t/app/load_general_config.t b/t/app/load_general_config.t index 1051aac3f..16ca2fc54 100644 --- a/t/app/load_general_config.t +++ b/t/app/load_general_config.t @@ -5,7 +5,6 @@ use Test::More tests => 2; use_ok 'FixMyStreet::App'; -# GAZE_URL chosen as it is unlikely to change -is FixMyStreet::App->config->{GAZE_URL}, # - 'http://gaze.mysociety.org/gaze', # +is FixMyStreet::App->config->{GAZE_URL}, + 'https://gaze.mysociety.org/gaze', "check that known config param is loaded"; |