From bdf406a10c15e3ec3def2f01fa36406931887cf9 Mon Sep 17 00:00:00 2001 From: Tyler Nadolski <122555266+nadolskit@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:06:44 -0700 Subject: [PATCH] update comments --- tests/test_paperqa.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_paperqa.py b/tests/test_paperqa.py index 7d92a86c..3e0f45fc 100644 --- a/tests/test_paperqa.py +++ b/tests/test_paperqa.py @@ -814,9 +814,9 @@ def test_pdf_reader_w_no_match_doc_details(stub_data_dir: Path) -> None: ) -# default: ['method', 'scheme', 'host', 'port', 'path', 'query'] +# vcr.VCR default: ('method', 'scheme', 'host', 'port', 'path', 'query') # this is the default list + body -# this ensures vcr distinguishes requests with a different body +# Adding body won't create new cassettes; it just helps vcr correctly match the right request with its response. @pytest.mark.vcr(match_on=["method", "scheme", "host", "port", "path", "query", "body"]) def test_pdf_reader_match_doc_details(stub_data_dir: Path) -> None: docs = Docs()