@@ -39,7 +39,7 @@ def test_ds():
3939 result = testdir .runpytest_subprocess ()
4040 result .stdout .fnmatch_lines ([
4141 "django: settings: tpkg.settings_ini (from ini)" ,
42- "*= 1 passed in *" ,
42+ "*= 1 passed*" ,
4343 ])
4444 assert result .ret == 0
4545
@@ -60,7 +60,7 @@ def test_settings():
6060 result = testdir .runpytest_subprocess ()
6161 result .stdout .fnmatch_lines ([
6262 "django: settings: tpkg.settings_env (from env)" ,
63- "*= 1 passed in *" ,
63+ "*= 1 passed*" ,
6464 ])
6565
6666
@@ -86,7 +86,7 @@ def test_ds():
8686 result = testdir .runpytest_subprocess ("--ds=tpkg.settings_opt" )
8787 result .stdout .fnmatch_lines ([
8888 "django: settings: tpkg.settings_opt (from option)" ,
89- "*= 1 passed in *" ,
89+ "*= 1 passed*" ,
9090 ])
9191
9292
@@ -137,7 +137,7 @@ def test_ds_after_user_conftest(testdir, monkeypatch):
137137 testdir .makepyfile (settings_after_conftest = "SECRET_KEY='secret'" )
138138 # testdir.makeconftest("import sys; print(sys.path)")
139139 result = testdir .runpytest_subprocess ("-v" )
140- result .stdout .fnmatch_lines (["* 1 passed in *" ])
140+ result .stdout .fnmatch_lines (["* 1 passed*" ])
141141 assert result .ret == 0
142142
143143
@@ -225,7 +225,7 @@ def test_user_count():
225225 """
226226 )
227227 result = testdir .runpython (p )
228- result .stdout .fnmatch_lines (["* 4 passed in *" ])
228+ result .stdout .fnmatch_lines (["* 4 passed*" ])
229229
230230
231231def test_settings_in_hook (testdir , monkeypatch ):
@@ -274,7 +274,7 @@ def test_settings():
274274 """
275275 )
276276 result = testdir .runpytest_subprocess ()
277- result .stdout .fnmatch_lines (["* 1 passed in *" ])
277+ result .stdout .fnmatch_lines (["* 1 passed*" ])
278278 assert result .ret == 0
279279
280280
0 commit comments