diff options
| author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-05-08 11:54:18 +0100 | 
|---|---|---|
| committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-05-08 11:54:18 +0100 | 
| commit | 8e6d4162ed7ca52598abf78f10317be0d77518a9 (patch) | |
| tree | 4077f1c22bd277ff2fc3048148052cefccd576b0 /lib/mauve/mauve_time.rb | |
| parent | deb14e7bc1979343188a0130d34bef16256e17ca (diff) | |
Fixed time tests + standardised dead zone + daylight hours.
Diffstat (limited to 'lib/mauve/mauve_time.rb')
| -rw-r--r-- | lib/mauve/mauve_time.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/mauve/mauve_time.rb b/lib/mauve/mauve_time.rb index c12fba3..2b9a0f0 100644 --- a/lib/mauve/mauve_time.rb +++ b/lib/mauve/mauve_time.rb @@ -122,7 +122,7 @@ class Time        # From our SLA:        #   "Working hours" means 9.30am to 5.30pm, Monday to Friday, excluding        #   English bank holidays. -      [9.5..17.5] +      [9.5...17.5]      end    end @@ -138,7 +138,7 @@ class Time      if defined? Mauve::Configuration and Mauve::Configuration.current        Mauve::Configuration.current.daytime_hours      else -      [8.0...20.0] +      [8.0...22.0]      end    end | 
