Skip to content

Commit

Permalink
Fix link test using old param name (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala authored Feb 16, 2024
1 parent a795cd0 commit d0fe331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integ/link_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1397,7 +1397,7 @@ def testPostLinksGroupList(self):
req = helper.getEndpoint() + "/groups/" + root_id + "/links"
group_ids = [root_id, group_id]
titles = ["link1"]
body = {"group_ids": group_ids, "titles": titles}
body = {"grp_ids": group_ids, "titles": titles}
rsp = self.session.post(req, data=json.dumps(body), headers=headers)
self.assertEqual(rsp.status_code, 200)
rspJson = json.loads(rsp.text)
Expand Down

0 comments on commit d0fe331

Please sign in to comment.