Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in spec file? #20

Closed
EricSchwartz7 opened this issue Oct 27, 2016 · 2 comments
Closed

Bug in spec file? #20

EricSchwartz7 opened this issue Oct 27, 2016 · 2 comments
Labels

Comments

@EricSchwartz7
Copy link

Hi Flatiron,

Lines 40 and 41 of my_collect_spec.rb read:

expect(my_collect(students) do |language|
  student.split(" ").first

I think it should be:

expect(my_collect(students) do |student|
  student.split(" ").first

I changed it and it got the test to pass. I hope I didn't just cheat my way through the lesson. haha

@emilycroft
Copy link

I had the same experience, as soon as I saw the error I came to see if anyone else had reported this issue. Also hoping this isn't cheating--

@gj
Copy link
Contributor

gj commented Aug 7, 2017

Fixed in #17. Thanks @EricSchwartz7 !

@gj gj closed this as completed Aug 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants
@emilycroft @gj @EricSchwartz7 and others