From f3f8141da541568d39a6fde0b62988d3246f50f4 Mon Sep 17 00:00:00 2001 From: Maria Grimaldi Date: Thu, 26 Dec 2024 12:06:36 +0100 Subject: [PATCH] refactor: fix typing error --- docs/how-tos/create-a-new-event.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-tos/create-a-new-event.rst b/docs/how-tos/create-a-new-event.rst index 8c609817..6f00c042 100644 --- a/docs/how-tos/create-a-new-event.rst +++ b/docs/how-tos/create-a-new-event.rst @@ -306,7 +306,7 @@ In our example, we could write a test that enrolls a user in a course and verifi Step 8: Consume the Event ~~~~~~~~~~~~~~~~~~~~~~~~~ -Since the event is now implemented, you should consume the event to verify that it is triggered and that the payload contains the necessary information. You can consume the event in a test environment using a Django Signal Receiver. This will help you verify that the event is triggered and that the payload contains the necessary information. You can use follow the steps in :doc:`../how-tos/consume-an-event` to consume the event in a test environment with a Django Signal Receiver. Or you could also use the Open edX Event Bus to consume the event in a test environment. For more information on how to use the Open edX Event Bus, refer to the :doc:`../how-tos/use-the-event-bus-to-broadcast-and-consume-events`. +Since the event is now implemented, you should consume the event to verify that it is triggered and that the payload contains the necessary information. You can consume the event in a test environment using a Django Signal Receiver. This will help you verify that the event is triggered and that the payload contains the necessary information. You can follow the steps in :doc:`../how-tos/consume-an-event` to consume the event in a test environment with a Django Signal Receiver. Or you could also use the Open edX Event Bus to consume the event in a test environment. For more information on how to use the Open edX Event Bus, refer to the :doc:`../how-tos/use-the-event-bus-to-broadcast-and-consume-events`. Step 9: Continue the Contribution Process ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~