Clean up end to end test
* don't use implementaiton for setting name * str() of path object is not needed
This commit is contained in:
parent
5d2183daf0
commit
6ea1fe538b
|
@ -1905,12 +1905,12 @@ def test_fine_grained_assertion_verbosity(pytester: Pytester):
|
|||
"""
|
||||
)
|
||||
pytester.makeini(
|
||||
f"""
|
||||
"""
|
||||
[pytest]
|
||||
{_Config._verbosity_ini_name(_Config.VERBOSITY_ASSERTIONS)} = 2
|
||||
verbosity_assertions = 2
|
||||
"""
|
||||
)
|
||||
result = pytester.runpytest(str(p))
|
||||
result = pytester.runpytest(p)
|
||||
|
||||
result.stdout.fnmatch_lines(
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue