Skip to content

Commit

Permalink
upgrade rspec should notation to expect notation
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Handekyn committed Feb 18, 2018
1 parent 4e8cbd7 commit 8a57851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/spec/prelude_lambda_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

it "knows about GCD alternatives" do
# test variant implementations
expect(Gcd1.(4,8)).to == 4
expect(Gcd2.(4,8)).to == 4
expect(Gcd1.(4,8)).to eq(4)
expect(Gcd2.(4,8)).to eq(4)
expect(GcdA1.([4,8,2])).to eq(2)
expect(GcdA2.([4,8,2])).to eq(2)
expect(GcdA3.([4,8,2])).to eq(2)
Expand Down

0 comments on commit 8a57851

Please sign in to comment.