From c810c78f71ff411183d7ae13efbdf1c88dd297ab Mon Sep 17 00:00:00 2001 From: Andy Kluger Date: Sun, 5 Nov 2023 00:33:53 -0400 Subject: [PATCH] Don't repeat an extra format when testing canonicalization Using the same non-canonical format could obscure a bug that wouldn't surface if they happened to match. --- tests/test_cli_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli_compile.py b/tests/test_cli_compile.py index 34d1ffe9..e502706b 100644 --- a/tests/test_cli_compile.py +++ b/tests/test_cli_compile.py @@ -2395,7 +2395,7 @@ def test_canonicalize_extras(pip_conf, runner, tmp_path, make_package, make_whee make_wheel(pkg, dists_dir) with open("requirements.in", "w") as req_in: - req_in.write("fake-sqlalchemy[fake-postgresql_psycoPG2BINARY]\n") + req_in.write("fake-sqlalchemy[FAKE_postgresql-psycopg2binary]\n") out = runner.invoke( cli,