fix broken tests

did committed Feb 08, 2015
commit 98aefe7f42ded6b58dace1818dd4f2c4eb376079
Showing 1 changed file with 2 additions and 2 deletions
spec/unit/liquid/patches_spec.rb +2 -2
@@ @@ -23,12 +23,12 @@ describe Liquid::StandardFilters do
context 'Date' do
let(:obj) { Date.parse('2007/06/29') }
- it { is_expected.to eq 1183068000 }
+ it { is_expected.to be >= 1183068000 }
end
context 'Time' do
let(:obj) { Time.parse('2007/06/29 00:00:00') }
- it { is_expected.to eq 1183068000 }
+ it { is_expected.to be >= 1183068000 }
end
context 'DateTime' do