remove same file extension constraint

This commit is contained in:
harisreedhar
2025-11-14 14:44:42 +05:30
committed by henryruhs
parent 92b1e1b3e3
commit 51d4ec63b0
16 changed files with 31 additions and 62 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ def before_all() -> None:
def test_get_temp_file_path() -> None:
temp_directory = tempfile.gettempdir()
assert get_temp_file_path(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'), get_test_example_file('target-240p.mp4')) == os.path.join(temp_directory, 'facefusion', 'target-240p', 'temp.mp4')
def test_get_temp_directory_path() -> None: