Skip to content

Commit

Permalink
test: ignore acceptable order change (#5727)
Browse files Browse the repository at this point in the history
* test: ignore acceptable order change

* fix: address review comments
  • Loading branch information
rjsparks committed May 31, 2023
1 parent 1ec403d commit c12f810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/secr/sreq/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def test_edit(self):
list(TimerangeName.objects.filter(name__in=['thursday-afternoon-early', 'thursday-afternoon-late']).values('name'))
)
self.assertFalse(sessions[0].joint_with_groups.count())
self.assertEqual(list(sessions[1].joint_with_groups.all()), [group3, group4])
self.assertEqual(set(sessions[1].joint_with_groups.all()), {group3, group4})

# Check whether the updated data is visible on the view page
r = self.client.get(redirect_url)
Expand Down

0 comments on commit c12f810

Please sign in to comment.