@@ -96,7 +96,7 @@ def test_ignore(client):
9696 else :
9797 origin = "'invalid_template.html'"
9898 result .stdout .fnmatch_lines_random ([
99- "tpkg/test_the_test.py F." ,
99+ "tpkg/test_the_test.py F.* " ,
100100 "E * Failed: Undefined template variable 'invalid_var' in {}" .format (origin )
101101 ])
102102
@@ -143,7 +143,7 @@ def test_ignore(client):
143143 ''' )
144144 result = django_testdir .runpytest_subprocess ('-s' )
145145 result .stdout .fnmatch_lines_random ([
146- "tpkg/test_the_test.py .." ,
146+ "tpkg/test_the_test.py ..* " ,
147147 ])
148148
149149
@@ -190,13 +190,13 @@ def test_default(self, testdir):
190190 """Not verbose by default."""
191191 result = testdir .runpytest_subprocess ('-s' )
192192 result .stdout .fnmatch_lines ([
193- "tpkg/test_the_test.py ." ])
193+ "tpkg/test_the_test.py .* " ])
194194
195195 def test_vq_verbosity_0 (self , testdir ):
196196 """-v and -q results in verbosity 0."""
197197 result = testdir .runpytest_subprocess ('-s' , '-v' , '-q' )
198198 result .stdout .fnmatch_lines ([
199- "tpkg/test_the_test.py ." ])
199+ "tpkg/test_the_test.py .* " ])
200200
201201 def test_verbose_with_v (self , testdir ):
202202 """Verbose output with '-v'."""
0 commit comments