From 0be84e07ebb7a8308c75a553105418c63151eea8 Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Tue, 22 Apr 2025 18:18:41 +0200 Subject: [PATCH] hotfix --- tests/test__main__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/test__main__.py b/tests/test__main__.py index 6381df7..3badf19 100644 --- a/tests/test__main__.py +++ b/tests/test__main__.py @@ -68,10 +68,6 @@ def test_display_verbose(tmp_path): assert stdout != "" or stderr != "" -# ... rest of code here ... - -# ... rest of code here ... - def test_create_directory_from_file(tmp_path): # Define the desired directory structure in a string with proper indentation structure_content = """data/ @@ -93,7 +89,7 @@ tests/ output_dir = tmp_path / 'output' output_dir.mkdir() - stdout, stderr = run_prodir(['create', "example.md" '-o']) + stdout, stderr = run_prodir(['create', "example.md"]) # Print the stdout and stderr for debugging print("stdout:", stdout) -- 2.34.1