aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/holiday_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/holiday_spec.rb')
-rw-r--r--spec/models/holiday_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/holiday_spec.rb b/spec/models/holiday_spec.rb
index 8c19f4aac..2f8eeabd9 100644
--- a/spec/models/holiday_spec.rb
+++ b/spec/models/holiday_spec.rb
@@ -16,7 +16,7 @@ describe Holiday do
it 'should require a day' do
holiday = Holiday.new
holiday.valid?.should be_false
- holiday.errors[:day].should == "can't be blank"
+ holiday.errors[:day].should == ["can't be blank"]
end
end