diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-14 22:17:41 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-14 22:17:41 +0000 |
commit | ab76b9e9641d4735f75d96402758bd72acf65b8c (patch) | |
tree | 11ab94330831272d3dac6a24220c25b1ed0f2af3 /lib/custodian.rb | |
parent | 8d7af91b9409ac5797f02b9a2d2769001d7031cb (diff) |
Remap HTTPS -> HTTP
Diffstat (limited to 'lib/custodian.rb')
-rw-r--r-- | lib/custodian.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/custodian.rb b/lib/custodian.rb index 79fca72..6e95f38 100644 --- a/lib/custodian.rb +++ b/lib/custodian.rb @@ -149,6 +149,7 @@ class Custodian # Given a test-type "foo" we'll attempt to instantiate a class called FOOTest. # test = hash['test_type'] + test = "http" if ( test == "https" ) clazz = test.upcase clazz = "#{clazz}Test" |