From 40369efdffafb06c3af38c8995f9633e00d0092e Mon Sep 17 00:00:00 2001 From: Adam Meehan Date: Fri, 11 Dec 2009 15:18:22 +1100 Subject: [PATCH] GMT to UTC in spec for 1.8.7 --- spec/active_record/attribute_methods_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/active_record/attribute_methods_spec.rb b/spec/active_record/attribute_methods_spec.rb index e450e77..63e054b 100644 --- a/spec/active_record/attribute_methods_spec.rb +++ b/spec/active_record/attribute_methods_spec.rb @@ -94,7 +94,7 @@ describe ValidatesTimeliness::ActiveRecord::AttributeMethods do @person.birth_date_and_time = time_string @person.save @person.reload - @person.birth_date_and_time.strftime('%Y-%m-%d %H:%M:%S %Z').should == time_string + ' GMT' + @person.birth_date_and_time.strftime('%Y-%m-%d %H:%M:%S %Z').should == time_string + ' UTC' end else