Skip to content

Commit

Permalink
Correct comments (change 'create' to 'add')
Browse files Browse the repository at this point in the history
  • Loading branch information
Iain-S committed Oct 19, 2023
1 parent 85d1064 commit f9290bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/sub_apps/test_sub.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
runner = CliRunner()


def test_create() -> None:
"""Test create command with all commandline options."""
def test_add() -> None:
"""Test add command with all commandline options."""

with patch("rctab_cli.sub_apps.sub.add_subscription") as mock_sub, patch(
"rctab_cli.sub_apps.sub.set_the_persistence"
Expand Down Expand Up @@ -42,8 +42,8 @@ def test_create() -> None:
)


def test_create_defaults() -> None:
"""Test create command with minimal commandline options."""
def test_add_defaults() -> None:
"""Test add command with minimal commandline options."""

with patch("rctab_cli.sub_apps.sub.add_subscription") as mock_sub, patch(
"rctab_cli.sub_apps.sub.set_the_persistence"
Expand Down

0 comments on commit f9290bd

Please sign in to comment.