diff --git a/tests/openai/test_simple_types.py b/tests/openai/test_simple_types.py index 4d7327289..adb256270 100644 --- a/tests/openai/test_simple_types.py +++ b/tests/openai/test_simple_types.py @@ -17,7 +17,7 @@ async def test_response_simple_types(aclient): messages=[ { "role": "user", - "content": "Product a Random but correct response given the desired output", + "content": "Produce a Random but correct response given the desired output", }, ], ) @@ -34,7 +34,7 @@ async def test_annotate(aclient): messages=[ { "role": "user", - "content": "Product a Random but correct response given the desired output", + "content": "Produce a Random but correct response given the desired output", }, ], ) @@ -50,7 +50,7 @@ def test_literal(client): messages=[ { "role": "user", - "content": "Product a Random but correct response given the desired output", + "content": "Produce a Random but correct response given the desired output", }, ], ) @@ -66,7 +66,7 @@ def test_union(client): messages=[ { "role": "user", - "content": "Product a Random but correct response given the desired output", + "content": "Produce a Random but correct response given the desired output", }, ], ) @@ -87,7 +87,7 @@ class Options(enum.Enum): messages=[ { "role": "user", - "content": "Product a Random but correct response given the desired output", + "content": "Produce a Random but correct response given the desired output", }, ], ) @@ -103,7 +103,7 @@ def test_bool(client): messages=[ { "role": "user", - "content": "Product a Random but correct response given the desired output", + "content": "Produce a Random but correct response given the desired output", }, ], )