From fdbe59ea879ce1ebc2eec363affd2698dc2814f4 Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Fri, 8 Nov 2024 17:39:01 +0000 Subject: [PATCH] Make question more prominent with bold --- docs/tutorial/testing.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/tutorial/testing.md b/docs/tutorial/testing.md index ce1ee02fce..678ba38ec1 100644 --- a/docs/tutorial/testing.md +++ b/docs/tutorial/testing.md @@ -77,11 +77,9 @@ Here we are checking that the exit code is 0, as it is for programs that exit wi Then we check that the text printed to "standard output" contains the text that our CLI program prints. -### Check the result for standard error - /// tip -Checking for output sent to standard error? Make sure your `CliRunner` instance is created with the `mix_stderr=False` argument. You need this to be able to access `result.stderr` in tests. +**Checking for output sent to standard error?** Make sure your `CliRunner` instance is created with the `mix_stderr=False` argument. You need this to be able to access `result.stderr` in tests. ///