Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

cesarmatta
5,796 PointsChallenge 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

KRIS NIKOLAISEN
54,739 PointsYou have equals("Burger time")
. The T in Time should be uppercase.

cesarmatta
5,796 PointsWow thanks you, i feel very dumb hehehe