We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f1513 commit 9c364e3Copy full SHA for 9c364e3
1 file changed
tests/test_parse.py
@@ -106,12 +106,11 @@ def test_upload_kof(self, file):
106
107
def test_err_file_containing_tabs(self):
108
109
- srid = 5110 # (ETRS89/NTM10)
110
-
+ srid = 5110
111
parser = KOFParser()
112
113
with pytest.raises(
114
- exceptions.ParseError,
115
- match="Error parsing KOF file on line 3 - KOF file contains tabs, please convert to spaces.",
+ exceptions.ParseError,
+ match="Error parsing KOF file on line 3 - KOF file contains tabs, please convert to spaces.",
116
):
117
parser.parse("tests/data/kof-with-tabs.kof", srid)
0 commit comments