Skip to content

Commit 41418fa

Browse files
committed
Fixed test failures due to metadata normalization changes
1 parent c1d442b commit 41418fa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_metadata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ def test_pkginfo_to_metadata(tmp_path: Path) -> None:
1212
("Metadata-Version", "2.1"),
1313
("Name", "spam"),
1414
("Version", "0.1"),
15-
("Requires-Dist", "pip@ https://github.com/pypa/pip/archive/1.3.1.zip"),
15+
("Requires-Dist", "pip @ https://github.com/pypa/pip/archive/1.3.1.zip"),
1616
("Requires-Dist", 'pywin32; sys_platform == "win32"'),
17-
("Requires-Dist", 'foo@ http://host/foo.zip ; sys_platform == "win32"'),
17+
("Requires-Dist", 'foo @ http://host/foo.zip ; sys_platform == "win32"'),
1818
("Provides-Extra", "signatures"),
1919
(
2020
"Requires-Dist",
2121
'pyxdg; sys_platform != "win32" and extra == "signatures"',
2222
),
2323
("Provides-Extra", "empty_extra"),
2424
("Provides-Extra", "extra"),
25-
("Requires-Dist", 'bar@ http://host/bar.zip ; extra == "extra"'),
25+
("Requires-Dist", 'bar @ http://host/bar.zip ; extra == "extra"'),
2626
("Provides-Extra", "faster-signatures"),
2727
("Requires-Dist", 'ed25519ll; extra == "faster-signatures"'),
2828
("Provides-Extra", "rest"),

0 commit comments

Comments
 (0)