Fix unsign

This commit is contained in:
Imbus 2024-04-13 09:36:34 +02:00
parent 57e969a562
commit 2d2b63938c
2 changed files with 2 additions and 2 deletions

View file

@ -278,7 +278,7 @@ def test_unsign_report():
report = getReport(member_token, member_user, project_name)
assert report_id != None, "Get report failed"
dprint(report)
assert report["signed_by"] == None, "Report was not unsigned"
assert report["signedBy"] == None, "Report was not unsigned"
gprint("test_unsign_report successful")