From e00b1a7b69d9f4db27cf5270189a746e9cc48e3d Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 9 Dec 2025 15:03:31 +0100 Subject: [PATCH] Solved import bug --- tests/e2e/test_changelog_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/test_changelog_commands.py b/tests/e2e/test_changelog_commands.py index 99bdb8a..2184901 100644 --- a/tests/e2e/test_changelog_commands.py +++ b/tests/e2e/test_changelog_commands.py @@ -53,7 +53,7 @@ class TestIntegrationChangelogCommands(unittest.TestCase): sys.argv = ["pkgmgr", "changelog"] + list(extra_args) try: - runpy.run_module("pkgmgr.cli", run_name="__main__") + runpy.run_module("main", run_name="__main__") except SystemExit as exc: code = exc.code if isinstance(exc.code, int) else str(exc.code) if code != 0: