From d32007b8c2489eed8489bcba9dfb0c5bf73e378b Mon Sep 17 00:00:00 2001 From: Piotr Mlocek Date: Wed, 18 Oct 2023 12:58:17 -0700 Subject: [PATCH] Update test_types.py --- clients/python/tests/test_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/tests/test_types.py b/clients/python/tests/test_types.py index 77689ade..2c48198f 100644 --- a/clients/python/tests/test_types.py +++ b/clients/python/tests/test_types.py @@ -50,7 +50,7 @@ def test_parameters_validation(): with pytest.raises(ValidationError): Parameters(top_p=-1) with pytest.raises(ValidationError): - Parameters(top_p=1) + Parameters(top_p=1.01) # Test truncate Parameters(truncate=1)