Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit e966a4a

Browse files
committed
fixed functional test to allow solution with parameter table
1 parent 1031f79 commit e966a4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/week_6/assignment/functional_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def test_search_gold(self, mocked_input):
8787
lines = output.split("\n")
8888

8989
self.assertIn(
90-
"https://itunes.apple.com/search?term",
90+
"https://itunes.apple.com/search",
9191
mock_request.call_args.args[0],
9292
"You should make a request to the iTunes search API using the URL provided in the instructions.",
9393
)
@@ -152,7 +152,7 @@ def test_search_random(self, mocked_input):
152152
lines = output.split("\n")
153153

154154
self.assertIn(
155-
"https://itunes.apple.com/search?term",
155+
"https://itunes.apple.com/search",
156156
mock_request.call_args.args[0],
157157
"You should make a request to the iTunes search API using the URL provided in the instructions.",
158158
)

0 commit comments

Comments
 (0)