From 8ddeec5038c08976fce25636bc723b31f90ea7f7 Mon Sep 17 00:00:00 2001 From: Gabriel Schowe Date: Thu, 19 Sep 2024 09:46:41 +0200 Subject: [PATCH] Fix: Container was in lower case --- tests/github/api/test_packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/github/api/test_packages.py b/tests/github/api/test_packages.py index 39f2cf38..cff62c0e 100644 --- a/tests/github/api/test_packages.py +++ b/tests/github/api/test_packages.py @@ -257,7 +257,7 @@ async def test_delete_package_with_tag(self): await self.api.delete_package_with_tag( organization="foo", - package_type=PackageType.Container, + package_type=PackageType.CONTAINER, package_name="bar", tag="broken" )