From e48f05e607a81d54cf782264bfc3d28e85cd4c4f Mon Sep 17 00:00:00 2001 From: Jordan Sissel Date: Wed, 19 Jun 2013 10:03:38 -0700 Subject: [PATCH] Remove '@' from '@message' --- spec/outputs/email.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/outputs/email.rb b/spec/outputs/email.rb index 0ded85380..01ab94669 100644 --- a/spec/outputs/email.rb +++ b/spec/outputs/email.rb @@ -142,7 +142,7 @@ describe "outputs/email" do end end - describe "match on @source and @message (LOGSTASH-826)" do + describe "match on source and message (LOGSTASH-826)" do config <<-CONFIG input { generator { @@ -156,7 +156,7 @@ describe "outputs/email" do to => "me@host" subject => "Hello World" body => "Mail body" - match => ["messageAndSourceMatch", "@message,*hello,,and,@source,*generator"] + match => ["messageAndSourceMatch", "message,*hello,,and,source,*generator"] options => ["port", #{@@port}, "authenticationType", "nil"] } }