Compare commits

...

2 Commits

Author SHA1 Message Date
Falko Victor Habel 887f9a38e1 Merge pull request 'hotfix' (#19) from feat/hotfix into develop
Gitea Actions For prodir / Explore-Gitea-Actions (push) Successful in 32s Details
Reviewed-on: #19
2025-04-22 19:06:34 +00:00
Falko Victor Habel 0be84e07eb hotfix
Gitea Actions For prodir / Explore-Gitea-Actions (push) Successful in 32s Details
2025-04-22 18:18:41 +02:00
1 changed files with 1 additions and 5 deletions

View File

@ -68,10 +68,6 @@ def test_display_verbose(tmp_path):
assert stdout != "" or stderr != "" assert stdout != "" or stderr != ""
# ... rest of code here ...
# ... rest of code here ...
def test_create_directory_from_file(tmp_path): def test_create_directory_from_file(tmp_path):
# Define the desired directory structure in a string with proper indentation # Define the desired directory structure in a string with proper indentation
structure_content = """data/ structure_content = """data/
@ -93,7 +89,7 @@ tests/
output_dir = tmp_path / 'output' output_dir = tmp_path / 'output'
output_dir.mkdir() 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 the stdout and stderr for debugging
print("stdout:", stdout) print("stdout:", stdout)