From d8996057b5417026f667b0d13f44305d7bfd3da5 Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Thu, 2 Apr 2009 11:37:09 -0400 Subject: [PATCH] Fixed failing spec. --- spec/httparty_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/httparty_spec.rb b/spec/httparty_spec.rb index 32f61a0..07c042d 100644 --- a/spec/httparty_spec.rb +++ b/spec/httparty_spec.rb @@ -175,7 +175,7 @@ describe HTTParty do it 'should only print each format once with an exception' do lambda do @klass.format :foobar - end.should raise_error(HTTParty::UnsupportedFormat, "Must be one of: json, xml, html, yaml, plain") + end.should raise_error(HTTParty::UnsupportedFormat, "Must be one of: json, plain, html, yaml, xml") end end