From 8cea74c27bd1a855469ca524d57244e0d69dda3b Mon Sep 17 00:00:00 2001 From: JiashengWu Date: Tue, 13 Sep 2022 22:20:04 -0700 Subject: [PATCH] Fix title case in testing-overview.md In `testing-overview.md`, the section headings have the first letter capitalized, like "Integration Tests" and "Component Tests". It's inconsistent to have "Unit tests". --- 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.