From 426eb83c6668d82a2ebaca6c672db131e37c11da Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 12 Mar 2021 15:26:52 +0000 Subject: tests/color: Fix event register to pass the datastore Adding the "if d is None" to the event handling code meant some of these tests stopped working. The reason is that len(d) was zero but not equal to None. Passing the data object to the register() function in the test correctly registers the event handler and avoids the problem, it just happened to work previously, incorrectly. Signed-off-by: Richard Purdie --- lib/bb/tests/color.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/bb/tests/color.py') diff --git a/lib/bb/tests/color.py b/lib/bb/tests/color.py index bf03750c6..88dd27800 100644 --- a/lib/bb/tests/color.py +++ b/lib/bb/tests/color.py @@ -31,7 +31,7 @@ class ColorCodeTests(unittest.TestCase): def setUp(self): self.d = bb.data.init() self._progress_watcher = ProgressWatcher() - bb.event.register("bb.build.TaskProgress", self._progress_watcher.handle_event) + bb.event.register("bb.build.TaskProgress", self._progress_watcher.handle_event, data=self.d) def tearDown(self): bb.event.remove("bb.build.TaskProgress", None) -- cgit 1.2.3-korg