Skip to content

Commit

Permalink
Sort the results of anomaly to avoid CI print mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPeloton committed Feb 28, 2024
1 parent 6d498f7 commit 9fa236c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fink_filters/filter_anomaly_notification/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def anomaly_notification_(
>>> pdf_anomalies = anomaly_notification_(df_proc, threshold=10,
... send_to_tg=False, channel_id=None,
... send_to_slack=False, channel_name=None)
>>> print(pdf_anomalies['objectId'].values)
>>> print(sorted(pdf_anomalies['objectId'].values))
['ZTF21acoshvy' 'ZTF18abgjtxx' 'ZTF19acevxhv' 'ZTF19aboujyi' 'ZTF18aapgymv'
'ZTF18abbtxsx' 'ZTF18aaakhsv' 'ZTF18aaypnnd' 'ZTF18aapoack' 'ZTF18abzvnya']
Expand Down

0 comments on commit 9fa236c

Please sign in to comment.