Skip to content

Commit

Permalink
typo fix and update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBelozerov committed Jun 19, 2024
1 parent 59c67c9 commit 1128c51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion t_sites/test_tempesta_tech.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,13 @@ def test_blog_post_flow(self):
# Obtain nonce
nonce = self.get_nonce()

# Publish new blog post
# Publish new blog post.
# The user is logged in, so the GET following the redirect from
# `POST /wp-comment-post.php` must receive the new page with the
# published comment. The only logged-in user comments are in interest
# because comments for unauthorized clients are sent for moderation
# and appear on the page only after approvement in the CMS, so this case
# is just equal to cache update for any page from the CMS.
post_id = self.post_blog_post(title=post_title, nonce=nonce)

# Get new blog post content
Expand Down
2 changes: 1 addition & 1 deletion t_stress/test_wordpress.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{"name": "H2", "proto": "h2", "http2": True},
]
)
class TestWorpressStress(CustomMtuMixin, tester.TempestaTest):
class TestWordpressStress(CustomMtuMixin, tester.TempestaTest):
proto: str
http2: bool
tempesta_tmpl = """
Expand Down

0 comments on commit 1128c51

Please sign in to comment.