@@ -251,7 +251,7 @@ def test_it():
251251 out = ourtester .runpytest (* args )
252252
253253 out .assert_outcomes (passed = 4 , failed = 0 )
254- assert out .outlines [8 : 12 ] == [
254+ assert out .outlines [9 : 13 ] == [
255255 "test_b.py::test_it PASSED" ,
256256 "test_a.py::test_it PASSED" ,
257257 "test_d.py::test_it PASSED" ,
@@ -271,7 +271,7 @@ def test_it():
271271 out = ourtester .runpytest (* args )
272272
273273 out .assert_outcomes (passed = 4 , failed = 0 )
274- assert out .outlines [8 : 12 ] == [
274+ assert out .outlines [9 : 13 ] == [
275275 "test_b.py::test_it PASSED" ,
276276 "test_a.py::test_it PASSED" ,
277277 "test_d.py::test_it PASSED" ,
@@ -310,7 +310,7 @@ def test_d(self):
310310 out = ourtester .runpytest (* args )
311311
312312 out .assert_outcomes (passed = 4 , failed = 0 )
313- assert out .outlines [8 : 12 ] == [
313+ assert out .outlines [9 : 13 ] == [
314314 "test_one.py::D::test_d PASSED" ,
315315 "test_one.py::B::test_b PASSED" ,
316316 "test_one.py::C::test_c PASSED" ,
@@ -342,7 +342,7 @@ def test_d(self):
342342 out = ourtester .runpytest (* args )
343343
344344 out .assert_outcomes (passed = 4 , failed = 0 )
345- assert out .outlines [8 : 12 ] == [
345+ assert out .outlines [9 : 13 ] == [
346346 "test_one.py::T::test_c PASSED" ,
347347 "test_one.py::T::test_b PASSED" ,
348348 "test_one.py::T::test_a PASSED" ,
@@ -371,7 +371,7 @@ def test_d():
371371 out = ourtester .runpytest (* args )
372372
373373 out .assert_outcomes (passed = 4 , failed = 0 )
374- assert out .outlines [8 : 12 ] == [
374+ assert out .outlines [9 : 13 ] == [
375375 "test_one.py::test_c PASSED" ,
376376 "test_one.py::test_a PASSED" ,
377377 "test_one.py::test_b PASSED" ,
@@ -405,7 +405,7 @@ def test_d():
405405 out = ourtester .runpytest (* args )
406406
407407 out .assert_outcomes (passed = 4 , failed = 0 )
408- assert out .outlines [8 : 12 ] == [
408+ assert out .outlines [9 : 13 ] == [
409409 "test_one.py::test_c PASSED" ,
410410 "test_one.py::test_a PASSED" ,
411411 "test_one.py::test_b PASSED" ,
@@ -435,7 +435,7 @@ def bar():
435435
436436 out = ourtester .runpytest (* args )
437437 out .assert_outcomes (passed = 2 )
438- assert out .outlines [8 : 10 ] == [
438+ assert out .outlines [9 : 11 ] == [
439439 "test_one.py::test_one.bar PASSED" ,
440440 "test_one.py::test_one.foo PASSED" ,
441441 ]
@@ -515,7 +515,7 @@ def test_doctests_in_txt_files_reordered(ourtester):
515515
516516 out = ourtester .runpytest (* args )
517517 out .assert_outcomes (passed = 2 )
518- assert out .outlines [8 : 10 ] == [
518+ assert out .outlines [9 : 11 ] == [
519519 "test2.txt::test2.txt PASSED" ,
520520 "test.txt::test.txt PASSED" ,
521521 ]
0 commit comments