From a052914ece5255cbf2948877b19b7d6929d164c4 Mon Sep 17 00:00:00 2001 From: guitvcer Date: Tue, 24 Jun 2025 18:53:35 +0500 Subject: [PATCH] fix typo --- docs/guide/testing-taskiq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/testing-taskiq.md b/docs/guide/testing-taskiq.md index 61013f43..58857e03 100644 --- a/docs/guide/testing-taskiq.md +++ b/docs/guide/testing-taskiq.md @@ -74,7 +74,7 @@ After the preparations are done, we need to modify the broker's file in your pro @[code python](../examples/testing/main_file.py) -As you can see, we added an `if` statement. If the expression is true, we replace our broker with an imemory broker. +As you can see, we added an `if` statement. If the expression is true, we replace our broker with an inmemory broker. The main point here is to not have an actual connection during testing. It's useful because inmemory broker has the same interface as a real broker, but it doesn't send tasks actually.