Skip to content

Commit 5a46920

Browse files
committed
Update test_resolution.py
1 parent 2c1a662 commit 5a46920

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/plugins/conan/test_resolution.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ class TestResolveConanData:
378378
@patch('cppython.plugins.conan.resolution.ConanAPI')
379379
@patch('cppython.plugins.conan.resolution._resolve_profiles')
380380
@patch('cppython.plugins.conan.resolution._detect_cmake_program')
381-
def test_resolve_conan_data_with_profiles(
381+
def test_with_profiles(
382382
self, mock_detect_cmake: Mock, mock_resolve_profiles: Mock, mock_conan_api_class: Mock
383383
) -> None:
384384
"""Test resolving ConanData with profile configuration."""
@@ -406,7 +406,7 @@ def test_resolve_conan_data_with_profiles(
406406
@patch('cppython.plugins.conan.resolution.ConanAPI')
407407
@patch('cppython.plugins.conan.resolution._resolve_profiles')
408408
@patch('cppython.plugins.conan.resolution._detect_cmake_program')
409-
def test_resolve_conan_data_default_profiles(
409+
def test_default_profiles(
410410
self, mock_detect_cmake: Mock, mock_resolve_profiles: Mock, mock_conan_api_class: Mock
411411
) -> None:
412412
"""Test resolving ConanData with default profile configuration."""
@@ -434,7 +434,7 @@ def test_resolve_conan_data_default_profiles(
434434
@patch('cppython.plugins.conan.resolution.ConanAPI')
435435
@patch('cppython.plugins.conan.resolution._resolve_profiles')
436436
@patch('cppython.plugins.conan.resolution._detect_cmake_program')
437-
def test_resolve_conan_data_null_profiles(
437+
def test_null_profiles(
438438
self, mock_detect_cmake: Mock, mock_resolve_profiles: Mock, mock_conan_api_class: Mock
439439
) -> None:
440440
"""Test resolving ConanData with null profile configuration."""

0 commit comments

Comments
 (0)