turingschool-examples / ruby-exercises

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

Seemingly incorrect answer for `command-query/exercises/student_spec.rb` on line 61 #123

Closed brandenge closed 1 year ago

brandenge commented 1 year ago

The last test in the file at command-query/exercises/student_spec.rb (on line 61) looks like a copy-paste error from the previous test on line 52.

Currently line 61 is: expect(student.grade).to eq('B')

But it seems like it should be expect(student.grade).to eq('D')