From 27f1cb02e71c1c9957734c6dc6b376c949c5a1ba Mon Sep 17 00:00:00 2001 From: labkey-susanh Date: Mon, 29 Sep 2025 15:20:51 -0700 Subject: [PATCH] Update punctuation --- test/integration/test_query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/test_query.py b/test/integration/test_query.py index d6a5dcc..6c6aff4 100644 --- a/test/integration/test_query.py +++ b/test/integration/test_query.py @@ -338,7 +338,7 @@ def test_api_save_rows(api: APIWrapper, blood_sample_type_fixture, tissue_sample # Expect to fail this request since the sample name was not specified for one of the rows with pytest.raises(ServerContextError) as e: api.query.save_rows(commands=commands) - assert e.value.message == "400: SampleID or Name is required for sample on row 2" + assert e.value.message == "400: SampleID or Name is required for sample on row 2." # Attempt the same request but with a 13.2 api version resp = api.query.save_rows(api_version=13.2, commands=commands) @@ -346,7 +346,7 @@ def test_api_save_rows(api: APIWrapper, blood_sample_type_fixture, tissue_sample assert resp["errorCount"] == 1 assert ( resp["result"][0]["errors"]["exception"] - == "SampleID or Name is required for sample on row 2" + == "SampleID or Name is required for sample on row 2." ) # Fix the first command by specifying a name for the sample