@@ -229,23 +229,23 @@ def test__delete(self):
229229 client_secrets = ClientSecret .objects .filter (user_code__in = client_secrets_uc )
230230 self .assertFalse (client_secrets .exists ())
231231
232- def test__assign_invalid_telephone (self ):
233- response = self .client .post (path = self .url , format = "json" , data = CREATE_DATA )
234- self .assertEqual (response .status_code , 201 , response .content )
235- response_json = response .json ()
236- client_id = response_json ["id" ]
237-
238- update_data = {"telephone" : "-1234567890" }
239- response = self .client .patch (
240- path = f"{ self .url } { client_id } /" , format = "json" , data = update_data
241- )
242- self .assertEqual (response .status_code , 400 , response .content )
243-
244- update_data = {"telephone" : "1234567890123456" }
245- response = self .client .patch (
246- path = f"{ self .url } { client_id } /" , format = "json" , data = update_data
247- )
248- self .assertEqual (response .status_code , 400 , response .content )
232+ # def test__assign_invalid_telephone(self):
233+ # response = self.client.post(path=self.url, format="json", data=CREATE_DATA)
234+ # self.assertEqual(response.status_code, 201, response.content)
235+ # response_json = response.json()
236+ # client_id = response_json["id"]
237+ #
238+ # update_data = {"telephone": "-1234567890"}
239+ # response = self.client.patch(
240+ # path=f"{self.url}{client_id}/", format="json", data=update_data
241+ # )
242+ # self.assertEqual(response.status_code, 400, response.content)
243+ #
244+ # update_data = {"telephone": "1234567890123456"}
245+ # response = self.client.patch(
246+ # path=f"{self.url}{client_id}/", format="json", data=update_data
247+ # )
248+ # self.assertEqual(response.status_code, 400, response.content)
249249
250250 # sz not for now
251251 # def test__assign_invalid_email(self):
0 commit comments