From 16fb55561f30bc713f36d451a261a5c693c46756 Mon Sep 17 00:00:00 2001 From: acyanbird Date: Sat, 17 Feb 2024 14:59:38 +0000 Subject: [PATCH] update --- blog/content/edition-2/posts/04-testing/index.zh-CN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-2/posts/04-testing/index.zh-CN.md b/blog/content/edition-2/posts/04-testing/index.zh-CN.md index c1319f87c..5a7c26dbd 100644 --- a/blog/content/edition-2/posts/04-testing/index.zh-CN.md +++ b/blog/content/edition-2/posts/04-testing/index.zh-CN.md @@ -642,7 +642,7 @@ fn test_println_output() { 如你所想,我们可以创建更多的测试函数:例如一个用来测试当打印一个很长的且包装正确的行时是否会发生panic的函数,或是一个用于测试换行符、不可打印字符、非unicode字符是否能被正确处理的函数。 -在这篇文章的剩余部分,我们还会解释如何创建一个_集成测试_以测试不同组建之间的交互。 +在这篇文章的剩余部分,我们还会解释如何创建一个 _集成测试_ 以测试不同组建之间的交互。 ## 集成测试