From 2fd4acdba81baa826795b693186e9d4be870bdd3 Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Thu, 22 Feb 2024 17:28:06 +0100 Subject: [PATCH] TEST: Fixed test for better debugging output --- unittests/test_crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/test_crawler.py b/unittests/test_crawler.py index fdb497f2..e0268992 100644 --- a/unittests/test_crawler.py +++ b/unittests/test_crawler.py @@ -1014,7 +1014,7 @@ def test_detect_circular_dependency(crawler_mocked_identifiable_retrieve, caplog _, _ = crawler.split_into_inserts_and_updates(flat) caplog.set_level(logging.ERROR, logger="caoscrawler.converters") assert "Found circular dependency" in caplog.text - assert "-------\na\n['C" in caplog.text + assert "\n--------\n\n> Parent: C\n\n>> Name: a\n[\'C\']" in caplog.text caplog.clear() -- GitLab