From 2636ed6a4c950aa90f0122061e3e8e90db43ab43 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebastian=20M=C3=BCller?= <mueller.seb@posteo.de>
Date: Mon, 1 Jul 2024 18:32:24 +0200
Subject: [PATCH] tests: checking _is_initialized is not possible anymore

---
 tests/core/test_schedule.py | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/tests/core/test_schedule.py b/tests/core/test_schedule.py
index 5a578134..aaf6c576 100644
--- a/tests/core/test_schedule.py
+++ b/tests/core/test_schedule.py
@@ -329,14 +329,6 @@ class TestComposition(unittest.TestCase):
         with self.assertRaises(ValueError):
             composition.run(start_time=0, end_time=100)
 
-    def test_fail_double_initialize(self):
-        module1 = MockupComponent(
-            callbacks={"Output": lambda t: t}, step=timedelta(1.0)
-        )
-
-        with self.assertRaises(FinamStatusError):
-            Composition([module1])
-
     def test_fail_double_connect(self):
         module1 = MockupComponent(
             callbacks={"Output": lambda t: t}, step=timedelta(1.0)
-- 
GitLab