From 82611bdc1e77286862a4581434a87f53f31b01dd Mon Sep 17 00:00:00 2001 From: Daniel Asztalos Date: Mon, 14 Jun 2021 15:48:06 +0200 Subject: [PATCH] Typo fixed --- doc/en/fixture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/fixture.rst b/doc/en/fixture.rst index 115a34f8c..4053de8dc 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -157,7 +157,7 @@ a function/method call. **Assert** is where we look at that resulting state and check if it looks how we'd expect after the dust has settled. It's where we gather evidence to say the -behavior does or does not aligns with what we expect. The ``assert`` in our test +behavior does or does not align with what we expect. The ``assert`` in our test is where we take that measurement/observation and apply our judgement to it. If something should be green, we'd say ``assert thing == "green"``.