From 098fc4c401ff3a636020f1d812c54daee89ef425 Mon Sep 17 00:00:00 2001 From: deajan Date: Tue, 1 Jul 2025 15:00:58 +0200 Subject: [PATCH] WIP: Make sure _DEBUG env variable is a str --- tests/test_npbackup-cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_npbackup-cli.py b/tests/test_npbackup-cli.py index a9dfdf5..7536bd1 100644 --- a/tests/test_npbackup-cli.py +++ b/tests/test_npbackup-cli.py @@ -134,7 +134,7 @@ def test_npbackup_cli_show_config(): def test_npbackup_cli_init(): shutil.rmtree(repo_config.g("repo_uri"), ignore_errors=True) - os.environ["_DEBUG"] = True + os.environ["_DEBUG"] = "True" sys.argv = ["", "-c", str(CONF_FILE), "--init"] try: with RedirectedStdout() as logs: