Skip to content

Commit

Permalink
fix requirement assessments tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexdev8 committed Feb 26, 2024
1 parent e31cbc9 commit 54dc9eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/app_tests/api/test_api_requirement_assessments.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def test_get_requirement_assessments(self, test):
"requirement": RequirementNode.objects.all()[0],
},
{
"folder": str(folder.id),
"folder": str(test.folder.id),
"compliance_assessment": {
"id": str(compliance_assessment.id),
"str": compliance_assessment.name,
Expand Down Expand Up @@ -203,7 +203,7 @@ def test_update_requirement_assessments(self, test):
"security_measures": [str(security_measure.id)],
},
{
"folder": str(Folder.get_root_folder().id),
"folder": str(test.folder.id),
"compliance_assessment": {
"id": str(compliance_assessment.id),
"str": compliance_assessment.name,
Expand Down

0 comments on commit 54dc9eb

Please sign in to comment.