blob: 25bbe6fd2215debb627943d7ba559ed348f8d726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/tests/test_parser.py b/tests/test_parser.py
index b554a63..c793832 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -1025,7 +1025,7 @@ def test_parser_selection():
assert parse('file:o') == ('urlp-file', ['file:o'], None, None, 'type/file')
assert file_retriever.last_http_accept is None
- assert parse('file:///o') == ('urlp-file', ['file:///o'], None, None, 'type/file')
+ assert parse('file:///o') == ('filep-file', ['file:///o'], None, None, 'type/file')
def test_retriever_selection():
|