fixed recipe book api test to reflect api change

This commit is contained in:
vabene1111 2021-09-14 22:59:23 +02:00
parent 70f96d3fe6
commit b7fe3e38e6

View File

@ -97,7 +97,7 @@ def test_add(arg, request, u1_s2):
c = request.getfixturevalue(arg[0])
r = c.post(
reverse(LIST_URL),
{'name': 'test'},
{'name': 'test', 'shared': []},
content_type='application/json'
)
response = json.loads(r.content)