1717class TestFixStringLiterals :
1818 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
1919
20- @pytest .mark .skip (reason = "Prism tests are disabled" )
20+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
2121 @parametrize
2222 def test_method_create (self , client : Benchify ) -> None :
2323 fix_string_literal = client .fix_string_literals .create (
@@ -28,7 +28,7 @@ def test_method_create(self, client: Benchify) -> None:
2828 )
2929 assert_matches_type (FixStringLiteralCreateResponse , fix_string_literal , path = ["response" ])
3030
31- @pytest .mark .skip (reason = "Prism tests are disabled" )
31+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
3232 @parametrize
3333 def test_method_create_with_all_params (self , client : Benchify ) -> None :
3434 fix_string_literal = client .fix_string_literals .create (
@@ -41,7 +41,7 @@ def test_method_create_with_all_params(self, client: Benchify) -> None:
4141 )
4242 assert_matches_type (FixStringLiteralCreateResponse , fix_string_literal , path = ["response" ])
4343
44- @pytest .mark .skip (reason = "Prism tests are disabled" )
44+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
4545 @parametrize
4646 def test_raw_response_create (self , client : Benchify ) -> None :
4747 response = client .fix_string_literals .with_raw_response .create (
@@ -56,7 +56,7 @@ def test_raw_response_create(self, client: Benchify) -> None:
5656 fix_string_literal = response .parse ()
5757 assert_matches_type (FixStringLiteralCreateResponse , fix_string_literal , path = ["response" ])
5858
59- @pytest .mark .skip (reason = "Prism tests are disabled" )
59+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
6060 @parametrize
6161 def test_streaming_response_create (self , client : Benchify ) -> None :
6262 with client .fix_string_literals .with_streaming_response .create (
@@ -79,7 +79,7 @@ class TestAsyncFixStringLiterals:
7979 "async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
8080 )
8181
82- @pytest .mark .skip (reason = "Prism tests are disabled" )
82+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
8383 @parametrize
8484 async def test_method_create (self , async_client : AsyncBenchify ) -> None :
8585 fix_string_literal = await async_client .fix_string_literals .create (
@@ -90,7 +90,7 @@ async def test_method_create(self, async_client: AsyncBenchify) -> None:
9090 )
9191 assert_matches_type (FixStringLiteralCreateResponse , fix_string_literal , path = ["response" ])
9292
93- @pytest .mark .skip (reason = "Prism tests are disabled" )
93+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
9494 @parametrize
9595 async def test_method_create_with_all_params (self , async_client : AsyncBenchify ) -> None :
9696 fix_string_literal = await async_client .fix_string_literals .create (
@@ -103,7 +103,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncBenchify)
103103 )
104104 assert_matches_type (FixStringLiteralCreateResponse , fix_string_literal , path = ["response" ])
105105
106- @pytest .mark .skip (reason = "Prism tests are disabled" )
106+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
107107 @parametrize
108108 async def test_raw_response_create (self , async_client : AsyncBenchify ) -> None :
109109 response = await async_client .fix_string_literals .with_raw_response .create (
@@ -118,7 +118,7 @@ async def test_raw_response_create(self, async_client: AsyncBenchify) -> None:
118118 fix_string_literal = await response .parse ()
119119 assert_matches_type (FixStringLiteralCreateResponse , fix_string_literal , path = ["response" ])
120120
121- @pytest .mark .skip (reason = "Prism tests are disabled" )
121+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
122122 @parametrize
123123 async def test_streaming_response_create (self , async_client : AsyncBenchify ) -> None :
124124 async with async_client .fix_string_literals .with_streaming_response .create (
0 commit comments