Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Basics (Retired) Ruby Methods Method Returns: Part 2

Nathaniel Kolenberg
Nathaniel Kolenberg
12,836 Points

Not sure why test is failing

Hi everyone,

I'm not entirely sure what exactly the test would require as I've tried my own code on workspaces and it works fine.

def mod(a, b)
  #write your code here
  c = a % b
  return "The remainder of #{a} divided by #{b} is #{c}"
end

I'm sure it has to do with some specific way the test requires (and I've tried multiple other ways), but no luck so far. The test requires you to return the remainder of a and b as c in a string that uses interpolation.

Would be very grateful for any help / suggestions / or even telling me if I did my code wrong.

Thanks in advance!

Nathaniel

method.rb
def mod(a, b)
  #write your code here
  c = a % b
  return "The remainder of #{a} divided by #{b} is #{c}"
end

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

The failing test has nothing to do with logic, I can promise you. You're simply missing a period at the end of the string. Talk about a picky challenge!

 return "The remainder of #{a} divided by #{b} is #{c}."
Nathaniel Kolenberg
Nathaniel Kolenberg
12,836 Points

Ha! Picky with a capital P! ;) Thanks a lot Jennifer! That did the trick!

Cheers!

Nathaniel