Skip to content

Commit

Permalink
fix(test): shorten test function names
Browse files Browse the repository at this point in the history
  • Loading branch information
n-dusan committed Nov 9, 2023
1 parent db67dca commit a5a13a4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from upgrade.scripts.requirements import to_requirements_obj


def test_get_compatible_version_where_current_installed_version_is_2_0_0_and_compatible_upgrade_version_is_2_0_1_expect_compatible_upgrade_version_returned(
def test_get_compatible_version_where_current_is_2_0_0_and_compatible_is_2_0_1_expect_compatible_upgrade_version_returned(
initial_v2_0_0_venv,
envs_home,
mock_package_index_html,
Expand All @@ -23,7 +23,7 @@ def test_get_compatible_version_where_current_installed_version_is_2_0_0_and_com
assert actual == expected


def test_get_compatible_version_where_current_installed_version_is_2_0_1_and_compatible_upgrade_version_is_2_0_1_expect_no_compatible_upgrade_version(
def test_get_compatible_version_where_current_is_2_0_1_and_compatible_is_2_0_1_expect_no_compatible_upgrade_version(
initial_v2_0_1_venv,
envs_home,
mock_package_index_html,
Expand All @@ -42,7 +42,7 @@ def test_get_compatible_version_where_current_installed_version_is_2_0_1_and_com
assert actual == expected


def test_get_compatible_version_where_current_installed_version_is_2_0_0_and_from_venv_without_specifier_and_compatible_upgrade_version_is_2_1_0_expect_compatible_upgrade_version_returned(
def test_get_compatible_version_where_current_is_2_0_0_and_venv_without_specifier_and_compatible_is_2_1_0_expect_compatible_returned(
initial_venv_without_specifier,
envs_home,
mock_package_index_html,
Expand Down

0 comments on commit a5a13a4

Please sign in to comment.