Skip to content

Commit

Permalink
fixup! fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
robrap committed Nov 21, 2024
1 parent 4e8ddad commit 3bcabaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion edx_arch_experiments/datadog_monitoring/tests/test_apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ def test_signal_has_receiver(self):
to be re-added during a call to ready, presumably because the signal
was already imported.
"""
assert worker_process_init.receivers[0][1].__name__ == 'init_worker_process'
# the name of the function is in the weakref __repr__
assert 'init_worker_process' in worker_process_init.receivers[0][1].__repr__()

0 comments on commit 3bcabaf

Please sign in to comment.