Skip to content

Commit

Permalink
Fixed error on client test
Browse files Browse the repository at this point in the history
  • Loading branch information
ggsdc committed Jul 17, 2024
1 parent f955e62 commit c698a17
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,9 @@ def test_put_one_report(self):

self.assertEqual(response.status_code, 200)

new_report = client.raw.get_one_report(reference_id=report_id)
new_report = client.raw.get_one_report(
reference_id=report_id, folder_destination=TEST_FOLDER
)

self.assertEqual(new_report.headers["File-Name"], payload["name"])
self.assertEqual(new_report.headers["File-Description"], payload["description"])
Expand Down

0 comments on commit c698a17

Please sign in to comment.