@@ -41,7 +41,6 @@ def __init__(self):
4141 self .app .email_input = StubInput ()
4242 self .app .city_input = StubInput ()
4343 self .app .homepage_input = StubInput ()
44- self .app .about_me_area = StubTextArea ()
4544 self .app .who_area = StubTextArea ()
4645 self .app .python_area = StubTextArea ()
4746 self .app .contributions_area = StubTextArea ()
@@ -96,7 +95,6 @@ def test_add_list_button_clears_form(self):
9695 self .app .email_input .value = "filled@email.com"
9796 self .app .city_input .value = "Filled City"
9897 self .app .homepage_input .value = "https://filled-homepage.com"
99- self .app .about_me_area .text = "Filled About me"
10098 self .app .who_area .text = "Filled Who am I"
10199 self .app .python_area .text = "Filled Python stuff"
102100 self .app .contributions_area .text = "Filled Contributions"
@@ -115,7 +113,6 @@ class DummyEvent:
115113 self .assertEqual (self .app .email_input .value , "" )
116114 self .assertEqual (self .app .city_input .value , "" )
117115 self .assertEqual (self .app .homepage_input .value , "" )
118- self .assertEqual (self .app .about_me_area .text , "Sobre mí" )
119116 self .assertEqual (self .app .who_area .text , "¿Quién eres y a qué te dedicas?" )
120117 self .assertEqual (self .app .python_area .text , "¿Cómo programas en Python?" )
121118 self .assertEqual (self .app .contributions_area .text , "¿Tienes algún aporte a la comunidad de Python?" )
@@ -176,7 +173,6 @@ def test_save_member_edit_no_pr(self):
176173 app .email_input .value = "test@email.com"
177174 app .city_input .value = "Test City"
178175 app .homepage_input .value = "https://homepage.com"
179- app .about_me_area .text = "About me"
180176 app .who_area .text = "Who am I"
181177 app .python_area .text = "Python stuff"
182178 app .contributions_area .text = "Contributions"
@@ -235,7 +231,6 @@ def test_save_member_edit(self):
235231 app .email_input .value = "test@email.com"
236232 app .city_input .value = "Test City"
237233 app .homepage_input .value = "https://homepage.com"
238- app .about_me_area .text = "About me"
239234 app .who_area .text = "Who am I"
240235 app .python_area .text = "Python stuff"
241236 app .contributions_area .text = "Contributions"
@@ -291,7 +286,6 @@ def test_save_member_new(self):
291286 app .email_input .value = "test@email.com"
292287 app .city_input .value = "Test City"
293288 app .homepage_input .value = "https://homepage.com"
294- app .about_me_area .text = "About me"
295289 app .who_area .text = "Who am I"
296290 app .python_area .text = "Python stuff"
297291 app .contributions_area .text = "Contributions"
@@ -338,7 +332,6 @@ def test_save_member_error_handling(self):
338332 app .email_input .value = ""
339333 app .city_input .value = ""
340334 app .homepage_input .value = ""
341- app .about_me_area .text = ""
342335 app .who_area .text = ""
343336 app .python_area .text = ""
344337 app .contributions_area .text = ""
0 commit comments