Skip to content

Commit d38650a

Browse files
committed
removed assert of unicode string
1 parent 3c5c488 commit d38650a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test_echo.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ def test_echo_attr_dict(testdir):
5959

6060
def test_echo_attr_list(testdir):
6161
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"])
6363

6464

6565
def test_echo_attr_list_inner(testdir):
6666
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
6868

6969

7070
def test_echo_attr_list_composite(testdir):
7171
result = testdir.runpytest('--echo-attr=test_echo.ATTR_COMPOSITE.key1',
7272
'--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
7575

7676

7777
def test_echo_attr_list_callable(testdir):

0 commit comments

Comments
 (0)