From 2235af63700cff3c6a94717803b9f41a6f87a36b Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 23 Jan 2023 03:26:33 +0400 Subject: [PATCH] Update src/roadmaps/software-design-architecture/content/100-clean-code-principles/110-keep-tests-independent.md --- .../100-clean-code-principles/110-keep-tests-independent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roadmaps/software-design-architecture/content/100-clean-code-principles/110-keep-tests-independent.md b/src/roadmaps/software-design-architecture/content/100-clean-code-principles/110-keep-tests-independent.md index 9a21ecfbe..dd029ec7f 100644 --- a/src/roadmaps/software-design-architecture/content/100-clean-code-principles/110-keep-tests-independent.md +++ b/src/roadmaps/software-design-architecture/content/100-clean-code-principles/110-keep-tests-independent.md @@ -1,6 +1,6 @@ # Keep Tests Independent -Keeping tests independent is important in system architecture because it ensures that the tests are reliable, repeatable, and easy to maintain. When tests are independent, a change in one test will not affect the results of other tests. +Keeping tests independent helps ensures that the tests are reliable, repeatable, and easy to maintain. When tests are independent, a change in one test will not affect the results of other tests. Here are some ways to keep tests independent in system architecture: