From 046801154da4c379605d1966c704371373eee7fb Mon Sep 17 00:00:00 2001 From: JiashengWu Date: Wed, 14 Sep 2022 00:19:07 -0700 Subject: [PATCH] Fix title case in testing-overview.md (#3322) --- docs/testing-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/testing-overview.md b/docs/testing-overview.md index 4216c7ff9cd..be92a4f626c 100644 --- a/docs/testing-overview.md +++ b/docs/testing-overview.md @@ -73,7 +73,7 @@ If your test has many steps or many expectations, you probably want to split it Lastly, as developers we like when our code works great and doesn't crash. With tests, this is often the opposite. Think of a failed test as of a _good thing!_ When a test fails, it often means something is not right. This gives you an opportunity to fix the problem before it impacts the users. -## Unit tests +## Unit Tests Unit tests cover the smallest parts of code, like individual functions or classes.