Skip to content

Commit

Permalink
[tools/shoestring]: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayonb committed Feb 18, 2025
1 parent 11c71a1 commit 5da7c44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/shoestring/tests/internal/test_Preparer.py
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ def test_can_generate_random_node_key_when_not_imported(self):
# region configure_docker

def _assert_can_configure_docker(self, config, expected_startup_files, expected_service_names, expected_recovery_service_names):
def _assert_can_configure_service(docker_compose_filepath, docker_compose_expected_service_names):
def _assert_can_configure_service(docker_compose_filepath, expected_names):
# - check compose file
expected_image_map = {
'db': 'mongo:6.0.14',
Expand All @@ -746,7 +746,7 @@ def _assert_can_configure_service(docker_compose_filepath, docker_compose_expect

service_names.append(service_name)

self.assertEqual(docker_compose_expected_service_names, service_names)
self.assertEqual(expected_names, service_names)

# Arrange:
with tempfile.TemporaryDirectory() as output_directory:
Expand Down

0 comments on commit 5da7c44

Please sign in to comment.