turingschool-examples / ruby-exercises

A collection of exercises to practice various aspects of Ruby
MIT License
237 stars 766 forks source link

Typo in test assertion in `iteration/exercises/spec/max_and_min_by_pattern_spec.rb` on line 10 #125

Closed brandenge closed 1 year ago

brandenge commented 1 year ago

In iteration/exercises/spec/max_and_min_by_pattern_spec.rb, line 10 is currently: expect(greatest).to eq(100000)

However, it should be:

expect(greatest).to eq(1000000)