From: Daniele Varrazzo Date: Tue, 25 Jun 2024 05:56:18 +0000 (+0200) Subject: test: add missing fixture to multirange test X-Git-Tag: 3.2.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2c83579e2523a3ba43caa61a59876f0b9e0b266;p=thirdparty%2Fpsycopg.git test: add missing fixture to multirange test --- diff --git a/tests/types/test_multirange.py b/tests/types/test_multirange.py index 2b0fecac1..4175eebe1 100644 --- a/tests/types/test_multirange.py +++ b/tests/types/test_multirange.py @@ -411,7 +411,7 @@ def test_dump_custom_empty(conn, testmr): @pytest.mark.parametrize("fmt_in", PyFormat) -def test_dump_custom_none(conn, fmt_in): +def test_dump_custom_none(conn, testmr, fmt_in): info = MultirangeInfo.fetch(conn, "testmultirange") register_multirange(info, conn) conn.adapters.register_dumper(str, StrNoneDumper)