From d4ba4841a57c80a2b9fa9ee38fa8a11eff9ab5a2 Mon Sep 17 00:00:00 2001 From: zdcao121 Date: Mon, 5 Aug 2024 00:44:59 +0800 Subject: [PATCH] update path in tests --- tests/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 478c322..d42238e 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -17,7 +17,7 @@ def test_utils(): mult_types = 10 n_max = 10 dim = 3 - csv_file = os.path.join(datadir, '../../mini.csv') + csv_file = os.path.join(datadir, '../../data/mini.csv') G, L, X, A, W = GLXYZAW_from_file(csv_file, atom_types, mult_types, n_max, dim)