Skip to content

Commit

Permalink
Fix base helper spec
Browse files Browse the repository at this point in the history
  • Loading branch information
luisramos0 committed Aug 20, 2020
1 parent fe07aba commit 904cfa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/helpers/spree/base_helper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
end

it "return complete list of countries" do
available_countries.count.should == Spree::Country.count
expect(available_countries.count).to eq Spree::Country.count
end
end

Expand All @@ -31,7 +31,7 @@
end

it "return only the countries defined by the checkout zone" do
available_countries.should == [country]
expect(available_countries).to eq [country]
end
end

Expand All @@ -44,7 +44,7 @@
end

it "return complete list of countries" do
available_countries.count.should == Spree::Country.count
expect(available_countries.count).to eq Spree::Country.count
end
end
end
Expand Down

0 comments on commit 904cfa3

Please sign in to comment.