From e1805c78850570374d912d591bfe92f021849abf Mon Sep 17 00:00:00 2001 From: joergbuchwald Date: Fri, 23 Aug 2024 13:51:53 +0200 Subject: [PATCH] fix directory --- tests/test_ogs6py.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ogs6py.py b/tests/test_ogs6py.py index 5c73db3..ae1e2ad 100644 --- a/tests/test_ogs6py.py +++ b/tests/test_ogs6py.py @@ -617,7 +617,7 @@ def test_replace_block_by_include(self): while chunk := f.read(8192): file_hash.update(chunk) self.assertEqual(file_hash.hexdigest(), 'cb08710c20a9ff178f4899cc80ef4ef5') - with open("tests/solid.xml", "rb") as f: + with open("solid.xml", "rb") as f: file_hash = hashlib.md5() while chunk := f.read(8192): file_hash.update(chunk)