Skip to content

Commit

Permalink
fix: remove 'caen-toolbox' tag from message output in DAQJobCAENToolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Dec 26, 2024
1 parent 80386b5 commit 10a13a6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/enrgdaq/daq/jobs/caen/toolbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def start(self):
self._put_message_out(
DAQJobMessageStoreTabular(
store_config=self.config.store_config,
tag="caen-toolbox",
keys=["timestamp", *[x for x in registers]],
data=[
[
Expand Down
1 change: 0 additions & 1 deletion src/tests/test_toolbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def test_start(
self.daq_job.start()
message = self.daq_job._put_message_out.call_args[0][0]
self.assertEqual(message.store_config, self.config.store_config)
self.assertEqual(message.tag, "caen-toolbox")
self.assertEqual(message.keys, ["timestamp", "reg1", "reg2"])
self.assertEqual(message.data, [[1234567890, 1, 2]])

Expand Down

0 comments on commit 10a13a6

Please sign in to comment.