Skip to content

Commit

Permalink
Rename a couple of TabbedContent tests
Browse files Browse the repository at this point in the history
So they don't get confused with actual "add after".
  • Loading branch information
davep committed Jun 15, 2023
1 parent 50d93b5 commit e4b4aad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_tabbed_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def on_tabbed_content_tab_activated(
assert app.message.tab.label.plain == "bar"


async def test_tabbed_content_add_after_from_empty():
async def test_tabbed_content_add_later_from_empty():
class TabbedApp(App[None]):
def compose(self) -> ComposeResult:
yield TabbedContent()
Expand All @@ -178,7 +178,7 @@ def compose(self) -> ComposeResult:
assert tabbed_content.active == "test-1"


async def test_tabbed_content_add_after_from_composed():
async def test_tabbed_content_add_later_from_composed():
class TabbedApp(App[None]):
def compose(self) -> ComposeResult:
with TabbedContent():
Expand Down

0 comments on commit e4b4aad

Please sign in to comment.