remove output_path argument

This commit is contained in:
harisreedhar
2026-03-17 14:01:28 +01:00
committed by henryruhs
parent 49b6acfecf
commit 820134698b
5 changed files with 15 additions and 14 deletions
+2 -1
View File
@@ -20,8 +20,9 @@ def before_all() -> None:
def test_get_temp_file_path() -> None:
state_manager.init_item('output_path', 'temp.mp4')
temp_directory = tempfile.gettempdir()
assert get_temp_file_path(get_test_example_file('target-240p.mp4'), get_test_example_file('target-240p.mp4')) == os.path.join(temp_directory, 'facefusion', 'target-240p', 'temp.mp4')
assert get_temp_file_path(get_test_example_file('target-240p.mp4')) == os.path.join(temp_directory, 'facefusion', 'target-240p', 'temp.mp4')
def test_get_temp_directory_path() -> None: