Skip to content

Commit

Permalink
Remove c char from prereq API dump
Browse files Browse the repository at this point in the history
  • Loading branch information
MetRonnie authored and dwsutherland committed Aug 24, 2024
1 parent fafe8e5 commit 347921f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions cylc/flow/prerequisite.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

"""Functionality for expressing and evaluating logical triggers."""

import math
import re
from typing import Iterable, Set, TYPE_CHECKING

Expand Down Expand Up @@ -232,11 +231,11 @@ def api_dump(self):
for s_msg in self.satisfied
)
conds = []
num_length = math.ceil(len(self.satisfied) / 10)
num_length = len(str(len(self.satisfied)))
for ind, message_tuple in enumerate(sorted(self.satisfied)):
point, name = message_tuple[0:2]
t_id = quick_relative_detokenise(point, name)
char = 'c%.{0}d'.format(num_length) % ind
char = str(ind).zfill(num_length)
c_msg = self.MESSAGE_TEMPLATE % message_tuple
c_val = self.satisfied[message_tuple]
c_bool = bool(c_val)
Expand Down
4 changes: 2 additions & 2 deletions tests/flakyfunctional/cylc-show/00-simple.t
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ cmp_json "${TEST_NAME}-taskinstance" "${TEST_NAME}-taskinstance" \
"runtime": {"completion": "(started and succeeded)"},
"prerequisites": [
{
"expression": "c0",
"expression": "0",
"conditions": [
{
"exprAlias": "c0",
"exprAlias": "0",
"taskId": "20141106T0900Z/bar",
"reqState": "succeeded",
"message": "satisfied naturally",
Expand Down

0 comments on commit 347921f

Please sign in to comment.