Skip to content

Commit

Permalink
updated song test title
Browse files Browse the repository at this point in the history
  • Loading branch information
jottenlips committed Nov 29, 2019
1 parent c337e59 commit 36ee035
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions features/Songs/tests/test_song.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ def test_update_song():
setup_mocks()
new_attr = {'title': 'new song title'}
updated_song = {**mock_song, **new_attr}
response = update_song({}, {}, mock_song)
assert response['message'] == 'success'
response = update_song({}, {}, updated_song)
print(response)
assert response['message'] == 'success' and response['song']['title'] == 'new song title'

0 comments on commit 36ee035

Please sign in to comment.