We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69a9e75 commit 536a3bdCopy full SHA for 536a3bd
1 file changed
openedx/core/djangoapps/user_api/accounts/tests/test_retirement_views.py
@@ -1094,15 +1094,15 @@ def test_custom_redacted_values(self):
1094
custom_username = 'username-redacted-12345'
1095
custom_email = 'email-redacted-67890'
1096
custom_name = 'name-redacted-abcde'
1097
-
+
1098
data = {
1099
'usernames': self.usernames,
1100
'redacted_username': custom_username,
1101
'redacted_email': custom_email,
1102
'redacted_name': custom_name
1103
}
1104
self.cleanup_and_assert_status(data=data)
1105
1106
# Records should still exist but with custom redacted PII fields
1107
retirements = UserRetirementStatus.objects.all()
1108
assert retirements.count() == len(self.usernames)
0 commit comments