summaryrefslogtreecommitdiff
path: root/jsonschema
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2023-02-16 20:01:58 +0200
committerJulian Berman <Julian@GrayVines.com>2023-02-21 09:58:40 +0200
commita42bbd95e240772c461b45f564dcaa0a95b0c401 (patch)
tree46c8e53f995601ddf1f5156d4df352156d8a90a5 /jsonschema
parentbdda72350321cca37b2eb64276d388fe441ca622 (diff)
downloadjsonschema-a42bbd95e240772c461b45f564dcaa0a95b0c401.tar.gz
Fix the benchmark to pass the right type for remotes again.
Diffstat (limited to 'jsonschema')
-rw-r--r--jsonschema/benchmarks/issue232.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonschema/benchmarks/issue232.py b/jsonschema/benchmarks/issue232.py
index bf357e9..efd0715 100644
--- a/jsonschema/benchmarks/issue232.py
+++ b/jsonschema/benchmarks/issue232.py
@@ -6,14 +6,14 @@ See https://github.com/python-jsonschema/jsonschema/pull/232.
from pathlib import Path
from pyperf import Runner
-from pyrsistent import m
+from referencing import Registry
from jsonschema.tests._suite import Version
import jsonschema
issue232 = Version(
path=Path(__file__).parent / "issue232",
- remotes=m(),
+ remotes=Registry(),
name="issue232",
)