diff options
| -rw-r--r-- | lib/custodian/alerter.rb | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/lib/custodian/alerter.rb b/lib/custodian/alerter.rb index e70ad0d..198716f 100644 --- a/lib/custodian/alerter.rb +++ b/lib/custodian/alerter.rb @@ -124,7 +124,10 @@ class Alerter        end      end - +    # +    # Add the test-type to the subject +    # +    subject = "#{subject} #{@details['test_type']}"      #      # Document the hostname if the alert relates to an IP address. @@ -190,6 +193,10 @@ class Alerter        end      end +    # +    # Add the test-type to the subject +    # +    subject = "#{subject} #{@details['test_type']}"      #      # Document the hostname if the alert relates to an IP address. | 
