From 048f16155ecf9ca45791323f739d76afe335f1fd Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 12 Mar 2025 14:42:20 -0700 Subject: [PATCH] fix typo --- .github/workflows/dependabot-auto-merge.yml | 2 +- tests/app/celery/test_scheduled_tasks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index fac48f07a..8e7d0ab09 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -14,7 +14,7 @@ jobs: if: github.actor == 'dependabot[bot]' # Only dependabot PRs steps: - name: Checkout repo - users: actions/checkout@v4 + uses: actions/checkout@v4 - name: Fetch Dependabot metadata id: metadata diff --git a/tests/app/celery/test_scheduled_tasks.py b/tests/app/celery/test_scheduled_tasks.py index bb416e7f4..894afa6f7 100644 --- a/tests/app/celery/test_scheduled_tasks.py +++ b/tests/app/celery/test_scheduled_tasks.py @@ -583,7 +583,7 @@ def test_batch_insert_with_expired_notifications(mocker): rs.llen.assert_called_once_with("message_queue") rs.rpush.assert_called_once() requeued_notification = json.loads(rs.rpush.call_args[0][1]) - assert requeued_notification["id"] == '1' + assert requeued_notification["id"] == "1" def test_batch_insert_with_malformed_notifications(mocker):