From 8404dd9ed55f6c2c65dc3c732271a080e275331c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Wed, 10 May 2023 12:53:22 +0200 Subject: [PATCH] MAINT: correct path --- integrationtests/basic_example/test_basic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrationtests/basic_example/test_basic.py b/integrationtests/basic_example/test_basic.py index b2d4c8f7..d3482a19 100755 --- a/integrationtests/basic_example/test_basic.py +++ b/integrationtests/basic_example/test_basic.py @@ -144,8 +144,8 @@ def test_single_insertion(clear_database, usemodel, crawler, ident): # Do a second run on the same data, there should be no changes: crawler = Crawler(identifiableAdapter=ident) - crawled_data = scan_directory(UNITTESTDIR/"test_directories", "examples_article", - UNITTESTDIR/"scifolder_cfood.yml") + crawled_data = scan_directory(UNITTESTDIR / "test_directories" / "examples_article", + UNITTESTDIR / "scifolder_cfood.yml") ins, ups = crawler.synchronize(crawled_data=crawled_data) assert len(ins) == 0 assert len(ups) == 0 -- GitLab