From 5f7904ae9f721586af1f691dfb2966b6fd2bdcf9 Mon Sep 17 00:00:00 2001 From: Oliver Sanders Date: Mon, 4 Mar 2024 15:55:52 +0000 Subject: [PATCH] tests/integration: make outputs different to labels * Ensure output "label != message" to avoid the potential for mixups. --- tests/integration/scripts/test_set.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/scripts/test_set.py b/tests/integration/scripts/test_set.py index 276bd726ccf..22cd44bbbce 100644 --- a/tests/integration/scripts/test_set.py +++ b/tests/integration/scripts/test_set.py @@ -73,7 +73,7 @@ async def test_rerun_incomplete( }, 'runtime': { # register a custom output - 'a': {'outputs': {'x': 'x'}}, + 'a': {'outputs': {'x': 'xyz'}}, }, }) schd = scheduler(id_, paused_start=False) @@ -103,7 +103,7 @@ async def test_data_store( }, 'runtime': { # register a custom output - 'a': {'outputs': {'x': 'x'}}, + 'a': {'outputs': {'x': 'xyz'}}, }, }) schd = scheduler(id_)