Skip to content
Snippets Groups Projects
Commit 263bcaf2 authored by David Baumgold's avatar David Baumgold
Browse files

Simplify birth_year variable

parent 55006037
No related merge requests found
......@@ -159,10 +159,9 @@ class OwnLearnerProfilePageTest(LearnerProfileTestMixin, WebAppTest):
"""
Verify age limit messages for a user.
"""
if birth_year:
self.set_birth_year(birth_year=birth_year)
else:
self.set_birth_year(birth_year="")
if birth_year is None:
birth_year = ""
self.set_birth_year(birth_year=birth_year)
profile_page = self.visit_profile_page(username)
self.assertTrue(profile_page.privacy_field_visible)
if message:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment