aboutsummaryrefslogtreecommitdiffstats
path: root/packaging-tools/tests/test_debian_repo_release.py
diff options
context:
space:
mode:
Diffstat (limited to 'packaging-tools/tests/test_debian_repo_release.py')
-rwxr-xr-xpackaging-tools/tests/test_debian_repo_release.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging-tools/tests/test_debian_repo_release.py b/packaging-tools/tests/test_debian_repo_release.py
index 0c6788c7a..49a32062a 100755
--- a/packaging-tools/tests/test_debian_repo_release.py
+++ b/packaging-tools/tests/test_debian_repo_release.py
@@ -241,12 +241,12 @@ class TestDebianRepoRelease(unittest.TestCase):
"""
config = ConfigParser()
config.read_string(sample_config)
- tasks = parse_data(config, task_type=TaskType.DEB_TASK_TYPE, task_filters=[])
+ tasks = parse_data(config, task_types=[TaskType.DEB_TASK_TYPE], task_filters=[])
client = AptlyApiClient(api_endpoint=f"http://{self.aptly_api}/", http_auth=None)
create_and_publish_repos(
client,
- tasks, # type: ignore
+ tasks[TaskType.DEB_TASK_TYPE], # type: ignore
gpg_key="",
gpg_passphrase="",
rta=None,