Skip to content

Commit 536a3bd

Browse files
fix: redacting user retirement data in lms
1 parent 69a9e75 commit 536a3bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

openedx/core/djangoapps/user_api/accounts/tests/test_retirement_views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,15 +1094,15 @@ def test_custom_redacted_values(self):
10941094
custom_username = 'username-redacted-12345'
10951095
custom_email = 'email-redacted-67890'
10961096
custom_name = 'name-redacted-abcde'
1097-
1097+
10981098
data = {
10991099
'usernames': self.usernames,
11001100
'redacted_username': custom_username,
11011101
'redacted_email': custom_email,
11021102
'redacted_name': custom_name
11031103
}
11041104
self.cleanup_and_assert_status(data=data)
1105-
1105+
11061106
# Records should still exist but with custom redacted PII fields
11071107
retirements = UserRetirementStatus.objects.all()
11081108
assert retirements.count() == len(self.usernames)

0 commit comments

Comments
 (0)