@@ -14,7 +14,7 @@ async def test_user_can_create_new_article(authorized_test_client: AsyncClient)
1414 payload = {
1515 "article" : {
1616 "title" : "Test Article" ,
17- "body" : "test body" ,
17+ "body" : "test body content " ,
1818 "description" : "test description" ,
1919 "tagList" : ["tag1" , "tag2" , "tag3" ],
2020 }
@@ -30,7 +30,7 @@ async def test_user_can_create_article_without_tags(
3030 payload = {
3131 "article" : {
3232 "title" : "Test Article" ,
33- "body" : "test body" ,
33+ "body" : "test body content " ,
3434 "description" : "test description" ,
3535 "tagList" : [],
3636 }
@@ -46,7 +46,7 @@ async def test_user_can_create_article_without_duplicated_tags(
4646 payload = {
4747 "article" : {
4848 "title" : "Test Article" ,
49- "body" : "test body" ,
49+ "body" : "test body content " ,
5050 "description" : "test description" ,
5151 "tagList" : ["tag1" , "tag2" , "tag2" , "tag3" , "tag3" ],
5252 }
@@ -63,7 +63,7 @@ async def test_user_can_create_article_with_existing_title(
6363 payload = {
6464 "article" : {
6565 "title" : test_article .title ,
66- "body" : "test body" ,
66+ "body" : "test body content " ,
6767 "description" : "test description" ,
6868 "tagList" : test_article .tags ,
6969 }
@@ -79,7 +79,7 @@ async def test_user_can_retrieve_article_without_tags(
7979 payload = {
8080 "article" : {
8181 "title" : "Test Article" ,
82- "body" : "test body" ,
82+ "body" : "test body content " ,
8383 "description" : "test description" ,
8484 "tagList" : [],
8585 }
0 commit comments