From 07017c40619d9dbdff446c2d45099528bf1d8817 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 7b7cc957..19cebb23 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,