@@ -549,7 +549,7 @@ def test_organiser_info(client, scenario):
549
549
contact .form ['zip_code' ] = '20001'
550
550
contact .form ['place' ] = 'Washington'
551
551
contact .
form [
'email' ]
= '[email protected] '
552
- contact .form ['phone' ] = '+41 23 456 789 '
552
+ contact .form ['phone' ] = '+41234567890 '
553
553
contact .form ['website' ] = 'https://www.example.org'
554
554
contact .form ['emergency' ] = '+01 234 56 78 (Peter)'
555
555
contact .form .submit ()
@@ -600,28 +600,28 @@ def with_public_organiser_data(values):
600
600
assert "Admins Association" not in page
601
601
assert "Washington" in page
602
602
assert "[email protected] " not in page
603
- assert "+41 23 456 789 " not in page
603
+ assert "+41 23 456 78 90 " not in page
604
604
assert "https://www.example.org" not in page
605
605
606
606
page = with_public_organiser_data (['email' ])
607
607
assert "Admins Association" not in page
608
608
assert "Washington" not in page
609
609
assert "[email protected] " in page
610
- assert "+41 23 456 789 " not in page
610
+ assert "+41 23 456 78 90 " not in page
611
611
assert "https://www.example.org" not in page
612
612
613
613
page = with_public_organiser_data (['phone' ])
614
614
assert "Admins Association" not in page
615
615
assert "Washington" not in page
616
616
assert "[email protected] " not in page
617
- assert "+41 23 456 789 " in page
617
+ assert "+41 23 456 78 90 " in page
618
618
assert "https://www.example.org" not in page
619
619
620
620
page = with_public_organiser_data (['website' ])
621
621
assert "Admins Association" not in page
622
622
assert "Washington" not in page
623
623
assert "[email protected] " not in page
624
- assert "+41 23 456 789 " not in page
624
+ assert "+41 23 456 78 90 " not in page
625
625
assert "https://www.example.org" in page
626
626
627
627
0 commit comments