From cd0ba635cdb70e826be9a8c7aa16368e5ba3e7c1 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Thu, 6 Jul 2023 00:23:20 +0700 Subject: [PATCH] chore: fix wrong grammar --- docs/2022-12-25-go-test-asap.html | 4 ++-- posts/2022-12-25-go-test-asap.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/2022-12-25-go-test-asap.html b/docs/2022-12-25-go-test-asap.html index 967e15c..488fb95 100644 --- a/docs/2022-12-25-go-test-asap.html +++ b/docs/2022-12-25-go-test-asap.html @@ -294,8 +294,8 @@ with my usecase) thanks to stretchr/testify. I init all default action on success case. Then I alter request or mock error for unit test to hit on other - case. Remember if unit test is hit, code coverate is surely increaesed, - and that my goal. + case. Remember if unit test is hit, code coverage is surely increased, and + that my goal.

// Init ServiceSuite as above
diff --git a/posts/2022-12-25-go-test-asap.md b/posts/2022-12-25-go-test-asap.md
index a5f00a6..a4c4018 100644
--- a/posts/2022-12-25-go-test-asap.md
+++ b/posts/2022-12-25-go-test-asap.md
@@ -219,7 +219,7 @@ When I see it, `TestPodBuild` has almost 2000 lines.
 The solution I propose here is simple (absolutely not perfect, but good with my usecase) thanks to **stretchr/testify**.
 I init all **default** action on **success** case.
 Then I **alter** request or mock error for unit test to hit on other case.
-Remember if unit test is hit, code coverate is surely increaesed, and that my **goal**.
+Remember if unit test is hit, code coverage is surely increased, and that my **goal**.
 
 ```go
 // Init ServiceSuite as above