From 1f5593db844b9c14418d3bb2c9bee96b18b9a9f6 Mon Sep 17 00:00:00 2001 From: Alex Epstein Date: Sun, 6 Aug 2017 21:30:29 -0400 Subject: [PATCH] Fixing taste short recommendation test --- tests/taste.bats | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/taste.bats b/tests/taste.bats index e83385e..70d6a34 100755 --- a/tests/taste.bats +++ b/tests/taste.bats @@ -17,12 +17,12 @@ @test "Testing short recommendations" { if [[ "$(uname)" == "Darwin" ]]; then - run taste Kid Cudi + run taste 50 Cent [ "$status" -eq 0 ] [ "${lines[0]}" = "===================================" ] - [ "${lines[1]}" = "Lupe Fiasco: music" ] - [ "${lines[2]}" = "Shadows And Fog: movie" ] - [ "${lines[3]}" = "Lulu James: music" ] + [ "${lines[1]}" = "G-Unit: music" ] + [ "${lines[2]}" = "Lloyd Banks: music" ] + [ "${lines[3]}" = "The Game: music" ] [ "${lines[4]}" = "===================================" ] fi }