From 297d796eaf4afd76d63d61ef26217f855e07a4ce Mon Sep 17 00:00:00 2001 From: Marko Ristin Date: Fri, 2 Feb 2024 11:22:28 +0100 Subject: [PATCH] Remove breakpoint in json-ld tests A `breakpoint()` has been mistakenly left in the json-ld test. In particular, the breakpoint put the update script for aas-core-meta on hold. In this patch, we remove the breakpoint so that the tests can run again. --- tests/jsonld_context/test_main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/jsonld_context/test_main.py b/tests/jsonld_context/test_main.py index 43bde972f..b6a5fc746 100644 --- a/tests/jsonld_context/test_main.py +++ b/tests/jsonld_context/test_main.py @@ -64,7 +64,6 @@ def test_jsonld_context_generation(self) -> None: ) generated_jsonld_context = (output_dir / "context.jsonld").read_text() - breakpoint() self.assertEqual(generated_jsonld_context, expected_jsonld_context)