Skip to content

Commit

Permalink
fix(test): sort the groups jexl
Browse files Browse the repository at this point in the history
Remove sensitivity for order to fix flaky tests.
  • Loading branch information
Stefan Borer authored and anehx committed Jul 23, 2020
1 parent 7eeeb81 commit be5487c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion caluma/caluma_workflow/jexl.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ def __init__(
context_data = {"info": validation_context}

self.context = Context(context_data)

self.add_transform(
"groups",
lambda names: list(
lambda names: sorted(
set(
chain(
*[
Expand Down

0 comments on commit be5487c

Please sign in to comment.