File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,19 +59,19 @@ def test_echo_attr_dict(testdir):
59
59
60
60
def test_echo_attr_list (testdir ):
61
61
result = testdir .runpytest ('--echo-attr=test_echo.ATTR_LIST.2' )
62
- result .stdout .fnmatch_lines ([u " test_echo.ATTR_LIST.2: 13" ])
62
+ result .stdout .fnmatch_lines ([" test_echo.ATTR_LIST.2: 13" ])
63
63
64
64
65
65
def test_echo_attr_list_inner (testdir ):
66
66
result = testdir .runpytest ('--echo-attr=test_echo.ATTR_LIST.3.1' )
67
- assert u " test_echo.ATTR_LIST.3.1: 22" in result .stdout .lines
67
+ assert " test_echo.ATTR_LIST.3.1: 22" in result .stdout .lines
68
68
69
69
70
70
def test_echo_attr_list_composite (testdir ):
71
71
result = testdir .runpytest ('--echo-attr=test_echo.ATTR_COMPOSITE.key1' ,
72
72
'--echo-attr=test_echo.ATTR_COMPOSITE.key2.3' )
73
- assert u " test_echo.ATTR_COMPOSITE.key1: 'value1'" in result .stdout .lines
74
- assert u " test_echo.ATTR_COMPOSITE.key2.3: 14" in result .stdout .lines
73
+ assert " test_echo.ATTR_COMPOSITE.key1: 'value1'" in result .stdout .lines
74
+ assert " test_echo.ATTR_COMPOSITE.key2.3: 14" in result .stdout .lines
75
75
76
76
77
77
def test_echo_attr_list_callable (testdir ):
You can’t perform that action at this time.
0 commit comments