From bc74ce8f1cf17bd4dcbdbb6ea303565cb108c819 Mon Sep 17 00:00:00 2001 From: Aaron Russell <128606235+aaronrussellHO@users.noreply.github.com> Date: Fri, 19 Jan 2024 09:57:53 +0000 Subject: [PATCH] Update docs/standards/developer-testing.md Co-authored-by: Robert Deniszczyc <72561986+robertdeniszczyc2@users.noreply.github.com> --- docs/standards/developer-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standards/developer-testing.md b/docs/standards/developer-testing.md index a2b783e7..315cc315 100644 --- a/docs/standards/developer-testing.md +++ b/docs/standards/developer-testing.md @@ -52,7 +52,7 @@ Automating tests enables the tests to be run consistently and often. Automated t ### You MUST make tests repeatable -The ability to repeat the same tests gives confidence that if there is a failure, something has changed to affect that failure. The values that a test rely on shouldn't change based on environments, and tests such as unit tests should not depend on other external factors and dependencies (such as third party API, etc) to run. +The ability to repeat the same tests gives confidence that if there is a failure, something has changed to affect that failure. The values that a test rely on shouldn't change based on environments, and tests such as unit tests should not depend on other external factors and dependencies (for example third party APIs) to run. ### You MUST have a way of measuring the effectiveness of testing