From b9fcb0419f78d8e3ad08a237804d184bf6b18db2 Mon Sep 17 00:00:00 2001 From: Frank Hoffmann Date: Fri, 28 Mar 2025 20:28:08 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Sofie Van Landeghem --- tests/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/utils.py b/tests/utils.py index 9deb06fa8..2945d8216 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -18,17 +18,17 @@ def pydantic_snapshot( v1: Snapshot, ): """ - this function should be used like: + This function should be used like this: >>> assert value == pydantic_snapshot(v2=snapshot(),v1=snapshot()) inline-snapshot will create the snapshots when pytest is executed for each versions of pydantic. - It is also possible to use the function inside snapshots for version specific values. + It is also possible to use the function inside snapshots for version-specific values. >>> assert value == snapshot({ "data": "some data", - "vesion_specific": pydantic_snapshot(v2=snapshot(),v1=snapshot()), + "version_specific": pydantic_snapshot(v2=snapshot(),v1=snapshot()), }) """ return v2 if PYDANTIC_V2 else v1