Remove old unicode prefix
This commit is contained in:
parent
ed3d527c09
commit
f84af8aa2e
|
@ -37,10 +37,10 @@ def test_run_analysis(src_dir, dest_dir):
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"params,exception",
|
"params,exception",
|
||||||
[
|
[
|
||||||
((Queue(), u"", u"", u""), TypeError),
|
((Queue(), "", "", ""), TypeError),
|
||||||
((Queue(), "", u"", u""), TypeError),
|
((Queue(), "", "", ""), TypeError),
|
||||||
((Queue(), u"", "", u""), TypeError),
|
((Queue(), "", "", ""), TypeError),
|
||||||
((Queue(), u"", u"", ""), TypeError),
|
((Queue(), "", "", ""), TypeError),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_run_analysis_wrong_params(params, exception):
|
def test_run_analysis_wrong_params(params, exception):
|
||||||
|
|
Loading…
Reference in New Issue