Remove f-string in test

pull/520/head
James Bourbeau 2018-12-18 09:29:28 -06:00
rodzic 3cadb1832d
commit 4f72fd8c94
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -14,7 +14,7 @@ def test_version(capsys):
"""
with pytest.raises(SystemExit):
make_r2d(['--version'])
assert capsys.readouterr().out == f"{__version__}\n"
assert capsys.readouterr().out == "{}\n".format(__version__)
def test_simple():
"""