diff --git a/spec/models/trade/shipments_gross_exports_export_spec.rb b/spec/models/trade/shipments_gross_exports_export_spec.rb index 731238ed3a..b136c3f47c 100644 --- a/spec/models/trade/shipments_gross_exports_export_spec.rb +++ b/spec/models/trade/shipments_gross_exports_export_spec.rb @@ -31,10 +31,8 @@ # Comparing the last succesful build and the first failed one, the issue seems to be related # to a different version of some packages installed, like Postgres(from 10.7 to 10.13) and RVM(from 1.29.7 to 1.29.10) context "when invalid date range" do - pending("This fails on Travis. It started failing after new version of some packages (like PG) have been installed") do - subject { Trade::ShipmentsGrossExportsExport.new(:internal => false, :time_range_start => 2015, :time_range_end => 2014) } - specify { subject.query.ntuples.should == 0 } - end + subject { Trade::ShipmentsGrossExportsExport.new(:internal => false, :time_range_start => 2015, :time_range_end => 2014) } + specify { subject.query.ntuples.should == 0 } end end