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

Java

Challenge High Score

This is my solution :

  public static void printBurgerTimeScoresDeclaratively(List<Score> scores) {
      scores.stream()
        .filter(score -> score.getGame().equals("Burger time"))
        .filter(score -> score.getAmount() >= 20000)
        .forEach(System.out::println);

Yet i got this error :

Task :test FAILED

com.teamtreehouse.challenges.highscores.MainTest > appropriateBurgerTimeAppears FAILED
    java.lang.AssertionError: Expected to see Burger Time entry with 'VALID_1' for a name
    Expected: a string containing "VALID_1"
         but: was ""
        at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
        at org.junit.Assert.assertThat(Assert.java:865)
        at com.teamtreehouse.teachingassistant.rules.Consoler.assertExpected(Consoler.java:61)
        at com.teamtreehouse.challenges.highscores.MainTest.appropriateBurgerTimeAppears(MainTest.java:67)

5 tests completed, 1 failed

Thanks !

Mod Edit: Fixed code and error formatting for readability.

2 Answers

You have equals("Burger time"). The T in Time should be uppercase.

Wow thanks you, i feel very dumb hehehe