@@ -235,7 +235,7 @@ def test_log_cli(request):
235235 ]
236236 )
237237 result .stdout .no_fnmatch_line ("*INFO message won't be shown*" )
238- # make sure that that we get a '0' exit code for the testsuite
238+ # make sure that we get a '0' exit code for the testsuite
239239 assert result .ret == 0
240240
241241
@@ -528,7 +528,7 @@ def test_log_cli(request):
528528 )
529529 result .stdout .no_fnmatch_line ("*This log message won't be shown*" )
530530
531- # make sure that that we get a '0' exit code for the testsuite
531+ # make sure that we get a '0' exit code for the testsuite
532532 assert result .ret == 0
533533
534534 result = pytester .runpytest ("-s" , "--log-level=INFO" )
@@ -542,7 +542,7 @@ def test_log_cli(request):
542542 )
543543 result .stdout .no_fnmatch_line ("*This log message won't be shown*" )
544544
545- # make sure that that we get a '0' exit code for the testsuite
545+ # make sure that we get a '0' exit code for the testsuite
546546 assert result .ret == 0
547547
548548
@@ -578,7 +578,7 @@ def test_log_cli(request):
578578 )
579579 result .stdout .no_fnmatch_line ("*This log message won't be shown*" )
580580
581- # make sure that that we get a '0' exit code for the testsuite
581+ # make sure that we get a '0' exit code for the testsuite
582582 assert result .ret == 0
583583
584584
@@ -653,7 +653,7 @@ def test_log_file(request):
653653 # fnmatch_lines does an assertion internally
654654 result .stdout .fnmatch_lines (["test_log_file_cli.py PASSED" ])
655655
656- # make sure that that we get a '0' exit code for the testsuite
656+ # make sure that we get a '0' exit code for the testsuite
657657 assert result .ret == 0
658658 assert os .path .isfile (log_file )
659659 with open (log_file ) as rfh :
@@ -684,7 +684,7 @@ def test_log_file(request):
684684 # fnmatch_lines does an assertion internally
685685 result .stdout .fnmatch_lines (["test_log_file_cli_level.py PASSED" ])
686686
687- # make sure that that we get a '0' exit code for the testsuite
687+ # make sure that we get a '0' exit code for the testsuite
688688 assert result .ret == 0
689689 assert os .path .isfile (log_file )
690690 with open (log_file ) as rfh :
@@ -735,7 +735,7 @@ def test_log_file(request):
735735 # fnmatch_lines does an assertion internally
736736 result .stdout .fnmatch_lines (["test_log_file_ini.py PASSED" ])
737737
738- # make sure that that we get a '0' exit code for the testsuite
738+ # make sure that we get a '0' exit code for the testsuite
739739 assert result .ret == 0
740740 assert os .path .isfile (log_file )
741741 with open (log_file ) as rfh :
@@ -774,7 +774,7 @@ def test_log_file(request):
774774 # fnmatch_lines does an assertion internally
775775 result .stdout .fnmatch_lines (["test_log_file_ini_level.py PASSED" ])
776776
777- # make sure that that we get a '0' exit code for the testsuite
777+ # make sure that we get a '0' exit code for the testsuite
778778 assert result .ret == 0
779779 assert os .path .isfile (log_file )
780780 with open (log_file ) as rfh :
@@ -808,7 +808,7 @@ def test_log_file():
808808
809809 result = pytester .runpytest ()
810810
811- # make sure that that we get a '0' exit code for the testsuite
811+ # make sure that we get a '0' exit code for the testsuite
812812 assert result .ret == 0
813813 assert os .path .isfile (log_file )
814814 with open (log_file , encoding = "utf-8" ) as rfh :
0 commit comments