@@ -24,7 +24,7 @@ def test_about_sidebar_only_shows_own_items(self, page):
2424 sidebar = page .locator (".sidebar-navigation" )
2525 assert sidebar .get_by_text ("Objectives" , exact = True ).count () > 0
2626 # Should NOT show items from other sections
27- assert sidebar .get_by_text ("Deep-Dive Analysis " ).count () == 0
27+ assert sidebar .get_by_text ("Guided Tour " ).count () == 0
2828 assert sidebar .get_by_text ("Vocabularies" , exact = True ).count () == 0
2929
3030 def test_architecture_sidebar_only_shows_own_items (self , page ):
@@ -33,15 +33,15 @@ def test_architecture_sidebar_only_shows_own_items(self, page):
3333 assert sidebar .get_by_text ("Vocabularies" , exact = True ).count () > 0
3434 # Should NOT show items from other sections
3535 assert sidebar .get_by_text ("Objectives" , exact = True ).count () == 0
36- assert sidebar .get_by_text ("Deep-Dive Analysis " ).count () == 0
36+ assert sidebar .get_by_text ("Guided Tour " ).count () == 0
3737
3838 def test_research_sidebar_only_shows_own_items (self , page ):
3939 page .goto (f"{ SITE_URL } /pubs.html" , wait_until = "domcontentloaded" )
4040 sidebar = page .locator (".sidebar-navigation" )
4141 assert sidebar .get_by_text ("Publications & Conferences" ).count () > 0
4242 # Should NOT show items from other sections
4343 assert sidebar .get_by_text ("Objectives" , exact = True ).count () == 0
44- assert sidebar .get_by_text ("Deep-Dive Analysis " ).count () == 0
44+ assert sidebar .get_by_text ("Guided Tour " ).count () == 0
4545
4646 def test_sidebar_does_not_show_old_information_architecture (self , page ):
4747 page .goto (f"{ SITE_URL } /design/index.html" , wait_until = "domcontentloaded" )
@@ -57,10 +57,10 @@ def test_how_to_use_has_overview(self, page):
5757 sidebar = page .locator (".sidebar-navigation" )
5858 assert sidebar .get_by_text ("Overview" , exact = True ).count () > 0
5959
60- def test_how_to_use_has_deep_dive (self , page ):
60+ def test_how_to_use_has_guided_tour (self , page ):
6161 page .goto (f"{ SITE_URL } /how-to-use.html" , wait_until = "domcontentloaded" )
6262 sidebar = page .locator (".sidebar-navigation" )
63- assert sidebar .get_by_text ("Deep-Dive Analysis " ).count () > 0
63+ assert sidebar .get_by_text ("Guided Tour " ).count () > 0
6464
6565 def test_how_to_use_has_globe_viz (self , page ):
6666 page .goto (f"{ SITE_URL } /how-to-use.html" , wait_until = "domcontentloaded" )
0 commit comments