Skip to content

Commit

Permalink
fix: bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
kiram15 committed Oct 8, 2024
1 parent 7e9d13f commit 62166ca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Unreleased
----------
* nothing unreleased

[4.27.3]
---------
* fix: Updating the EnterpriseGroup serializer with created variable

[4.27.0]
---------
* chore: Add index to the username field in the `Consent` model
Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Your project description goes here.
"""

__version__ = "4.27.0"
__version__ = "4.27.3"
10 changes: 5 additions & 5 deletions tests/test_enterprise/api/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8063,7 +8063,7 @@ def test_successful_retrieve_group(self):
"""
Test retrieving a single group record
"""
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>'
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>/'
url = settings.TEST_SERVER + reverse(
'enterprise-group-detail',
kwargs={'pk': self.group_1.uuid},
Expand Down Expand Up @@ -8476,7 +8476,7 @@ def test_successful_update_group(self):
"""
Test patching an existing group record
"""
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>'
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>/'
url = settings.TEST_SERVER + reverse(
'enterprise-group-detail',
kwargs={'pk': self.group_1.uuid},
Expand All @@ -8499,7 +8499,7 @@ def test_successful_update_group_name(self):
"""
Test patching an existing group record display name
"""
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>'
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>/'
url = settings.TEST_SERVER + reverse(
'enterprise-group-detail',
kwargs={'pk': self.group_1.uuid},
Expand All @@ -8514,7 +8514,7 @@ def test_successful_delete_group(self):
Test deleting a group record
"""
group_to_delete_uuid = EnterpriseGroupFactory(enterprise_customer=self.enterprise_customer).uuid
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>'
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>/'
url = settings.TEST_SERVER + reverse(
'enterprise-group-detail',
kwargs={'pk': group_to_delete_uuid},
Expand Down Expand Up @@ -8756,7 +8756,7 @@ def test_patch_with_bad_request_customer_to_change_to(self):
Test that the PATCH endpoint will not allow the user to update a group to a customer that the requester
doesn't have access to
"""
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>'
# url: 'http://testserver/enterprise/api/v1/enterprise_group/<group uuid>/'
url = settings.TEST_SERVER + reverse(
'enterprise-group-detail',
kwargs={'pk': self.group_1.uuid},
Expand Down

0 comments on commit 62166ca

Please sign in to comment.