@@ -24,7 +24,7 @@ class TestMedia:
2424 @parametrize
2525 def test_method_add (self , client : OnlyFansAPI ) -> None :
2626 media = client .media .vault .lists .media .add (
27- list_id = "quia " ,
27+ list_id = "ex " ,
2828 account = "acct_XXXXXXXXXXXXXXX" ,
2929 media_ids = ["string" ],
3030 )
@@ -34,7 +34,7 @@ def test_method_add(self, client: OnlyFansAPI) -> None:
3434 @parametrize
3535 def test_raw_response_add (self , client : OnlyFansAPI ) -> None :
3636 response = client .media .vault .lists .media .with_raw_response .add (
37- list_id = "quia " ,
37+ list_id = "ex " ,
3838 account = "acct_XXXXXXXXXXXXXXX" ,
3939 media_ids = ["string" ],
4040 )
@@ -48,7 +48,7 @@ def test_raw_response_add(self, client: OnlyFansAPI) -> None:
4848 @parametrize
4949 def test_streaming_response_add (self , client : OnlyFansAPI ) -> None :
5050 with client .media .vault .lists .media .with_streaming_response .add (
51- list_id = "quia " ,
51+ list_id = "ex " ,
5252 account = "acct_XXXXXXXXXXXXXXX" ,
5353 media_ids = ["string" ],
5454 ) as response :
@@ -65,7 +65,7 @@ def test_streaming_response_add(self, client: OnlyFansAPI) -> None:
6565 def test_path_params_add (self , client : OnlyFansAPI ) -> None :
6666 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account` but received ''" ):
6767 client .media .vault .lists .media .with_raw_response .add (
68- list_id = "quia " ,
68+ list_id = "ex " ,
6969 account = "" ,
7070 media_ids = ["string" ],
7171 )
@@ -81,7 +81,7 @@ def test_path_params_add(self, client: OnlyFansAPI) -> None:
8181 @parametrize
8282 def test_method_remove (self , client : OnlyFansAPI ) -> None :
8383 media = client .media .vault .lists .media .remove (
84- list_id = "quia " ,
84+ list_id = "ex " ,
8585 account = "acct_XXXXXXXXXXXXXXX" ,
8686 media_ids = ["string" ],
8787 )
@@ -91,7 +91,7 @@ def test_method_remove(self, client: OnlyFansAPI) -> None:
9191 @parametrize
9292 def test_raw_response_remove (self , client : OnlyFansAPI ) -> None :
9393 response = client .media .vault .lists .media .with_raw_response .remove (
94- list_id = "quia " ,
94+ list_id = "ex " ,
9595 account = "acct_XXXXXXXXXXXXXXX" ,
9696 media_ids = ["string" ],
9797 )
@@ -105,7 +105,7 @@ def test_raw_response_remove(self, client: OnlyFansAPI) -> None:
105105 @parametrize
106106 def test_streaming_response_remove (self , client : OnlyFansAPI ) -> None :
107107 with client .media .vault .lists .media .with_streaming_response .remove (
108- list_id = "quia " ,
108+ list_id = "ex " ,
109109 account = "acct_XXXXXXXXXXXXXXX" ,
110110 media_ids = ["string" ],
111111 ) as response :
@@ -122,7 +122,7 @@ def test_streaming_response_remove(self, client: OnlyFansAPI) -> None:
122122 def test_path_params_remove (self , client : OnlyFansAPI ) -> None :
123123 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account` but received ''" ):
124124 client .media .vault .lists .media .with_raw_response .remove (
125- list_id = "quia " ,
125+ list_id = "ex " ,
126126 account = "" ,
127127 media_ids = ["string" ],
128128 )
@@ -144,7 +144,7 @@ class TestAsyncMedia:
144144 @parametrize
145145 async def test_method_add (self , async_client : AsyncOnlyFansAPI ) -> None :
146146 media = await async_client .media .vault .lists .media .add (
147- list_id = "quia " ,
147+ list_id = "ex " ,
148148 account = "acct_XXXXXXXXXXXXXXX" ,
149149 media_ids = ["string" ],
150150 )
@@ -154,7 +154,7 @@ async def test_method_add(self, async_client: AsyncOnlyFansAPI) -> None:
154154 @parametrize
155155 async def test_raw_response_add (self , async_client : AsyncOnlyFansAPI ) -> None :
156156 response = await async_client .media .vault .lists .media .with_raw_response .add (
157- list_id = "quia " ,
157+ list_id = "ex " ,
158158 account = "acct_XXXXXXXXXXXXXXX" ,
159159 media_ids = ["string" ],
160160 )
@@ -168,7 +168,7 @@ async def test_raw_response_add(self, async_client: AsyncOnlyFansAPI) -> None:
168168 @parametrize
169169 async def test_streaming_response_add (self , async_client : AsyncOnlyFansAPI ) -> None :
170170 async with async_client .media .vault .lists .media .with_streaming_response .add (
171- list_id = "quia " ,
171+ list_id = "ex " ,
172172 account = "acct_XXXXXXXXXXXXXXX" ,
173173 media_ids = ["string" ],
174174 ) as response :
@@ -185,7 +185,7 @@ async def test_streaming_response_add(self, async_client: AsyncOnlyFansAPI) -> N
185185 async def test_path_params_add (self , async_client : AsyncOnlyFansAPI ) -> None :
186186 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account` but received ''" ):
187187 await async_client .media .vault .lists .media .with_raw_response .add (
188- list_id = "quia " ,
188+ list_id = "ex " ,
189189 account = "" ,
190190 media_ids = ["string" ],
191191 )
@@ -201,7 +201,7 @@ async def test_path_params_add(self, async_client: AsyncOnlyFansAPI) -> None:
201201 @parametrize
202202 async def test_method_remove (self , async_client : AsyncOnlyFansAPI ) -> None :
203203 media = await async_client .media .vault .lists .media .remove (
204- list_id = "quia " ,
204+ list_id = "ex " ,
205205 account = "acct_XXXXXXXXXXXXXXX" ,
206206 media_ids = ["string" ],
207207 )
@@ -211,7 +211,7 @@ async def test_method_remove(self, async_client: AsyncOnlyFansAPI) -> None:
211211 @parametrize
212212 async def test_raw_response_remove (self , async_client : AsyncOnlyFansAPI ) -> None :
213213 response = await async_client .media .vault .lists .media .with_raw_response .remove (
214- list_id = "quia " ,
214+ list_id = "ex " ,
215215 account = "acct_XXXXXXXXXXXXXXX" ,
216216 media_ids = ["string" ],
217217 )
@@ -225,7 +225,7 @@ async def test_raw_response_remove(self, async_client: AsyncOnlyFansAPI) -> None
225225 @parametrize
226226 async def test_streaming_response_remove (self , async_client : AsyncOnlyFansAPI ) -> None :
227227 async with async_client .media .vault .lists .media .with_streaming_response .remove (
228- list_id = "quia " ,
228+ list_id = "ex " ,
229229 account = "acct_XXXXXXXXXXXXXXX" ,
230230 media_ids = ["string" ],
231231 ) as response :
@@ -242,7 +242,7 @@ async def test_streaming_response_remove(self, async_client: AsyncOnlyFansAPI) -
242242 async def test_path_params_remove (self , async_client : AsyncOnlyFansAPI ) -> None :
243243 with pytest .raises (ValueError , match = r"Expected a non-empty value for `account` but received ''" ):
244244 await async_client .media .vault .lists .media .with_raw_response .remove (
245- list_id = "quia " ,
245+ list_id = "ex " ,
246246 account = "" ,
247247 media_ids = ["string" ],
248248 )
0 commit comments