From 713b4427806248579cda1b9bd8e87659194b7c64 Mon Sep 17 00:00:00 2001 From: John Sharples Date: Thu, 5 Sep 2024 14:22:14 +0000 Subject: [PATCH] 318: fix test, pass tmpdir as list. --- METdbLoad/test/test_met_db_load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/METdbLoad/test/test_met_db_load.py b/METdbLoad/test/test_met_db_load.py index 3c64c80..11e7f48 100644 --- a/METdbLoad/test/test_met_db_load.py +++ b/METdbLoad/test/test_met_db_load.py @@ -9,7 +9,7 @@ def test_met_db_load(emptyDB, get_xml_test_file, testRunSql, tmp_path): test_data = { "xmlfile": str(get_xml_test_file), "index": True, - "tmpdir": str(tmp_path), + "tmpdir": [str(tmp_path)], } test_args = argparse.Namespace() for k,v in test_data.items():