remove unused import and fix error test

This commit is contained in:
IAlibay
2020-07-15 18:26:26 +01:00
parent d70b1e6caa
commit dd7434fc37
2 changed files with 1 additions and 3 deletions

View File

@@ -3,7 +3,6 @@ import logging
import os import os
import re import re
from pathlib import Path from pathlib import Path
from io import StringIO
import pytest import pytest
from numpy.testing import assert_almost_equal from numpy.testing import assert_almost_equal
from propka.parameters import Parameters from propka.parameters import Parameters

View File

@@ -113,8 +113,7 @@ def test_valuerror_notpdb(tmpdir):
ref_path, pdb_path = get_paths(pdb) ref_path, pdb_path = get_paths(pdb)
with open(pdb_path, 'r') as writer: filestream = StringIO()
filestream = StringIO()
errmsg = "The pdb file does not seem to contain any " errmsg = "The pdb file does not seem to contain any "
with pytest.raises(ValueError, match=errmsg): with pytest.raises(ValueError, match=errmsg):