misc: fix typo in tests (#86870)

This commit is contained in:
Lauréline Guérin 2024-02-12 16:52:23 +01:00
parent 51d327d72e
commit 31d388bef8
No known key found for this signature in database
GPG Key ID: 1FAB9B9B4F93D473
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ def test_import_export(app, some_data):
assert TextCell.objects.all().count() == 1
import_site(data={}, clean=True)
tempdir = tempfile.mkdtemp('chrono-test')
tempdir = tempfile.mkdtemp('combo-test')
empty_output = get_output_of_command('export_site', output=os.path.join(tempdir, 't.json'))
assert os.path.exists(os.path.join(tempdir, 't.json'))
shutil.rmtree(tempdir)