From 4f7412d1d46672849e7e7edd79da2681ebf91278 Mon Sep 17 00:00:00 2001 From: Matthias Schoettle Date: Thu, 18 Jun 2026 17:07:13 -0400 Subject: [PATCH] Fix reference to activity in testing-code README --- exercises/testing-code/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/testing-code/README.md b/exercises/testing-code/README.md index 7c15710..44a4a66 100644 --- a/exercises/testing-code/README.md +++ b/exercises/testing-code/README.md @@ -106,7 +106,7 @@ Definition contains a `await asyncio.sleep(15)` call that adds a 15-second delay to the Workflow Execution. This is because of the time-skipping feature provided by the test environment. -Second, calls to `RegisterActivity` near the top of the test indicate +Second, calls to `TranslationActivities` near the top of the test indicate that the Activity Definitions are executed as part of this Workflow test. As you learned, you can test your Workflow Definition in isolation from the Activity implementations by using mocks. The optional exercise