[refactor] rename test name
This commit is contained in:
parent
ad2acabf34
commit
e427290f77
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Test inbox route."""
|
||||
|
||||
def test_inbox(client):
|
||||
def test_inbox_no_signature_key(client):
|
||||
"""Test inbox"""
|
||||
response = client.post("/inbox",
|
||||
data={"name": "Test"})
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Test App index"""
|
||||
|
||||
def test_request_example(client):
|
||||
def test_index_page(client):
|
||||
"""Test index path"""
|
||||
response = client.get("/")
|
||||
assert b"Hello Fediverse!" in response.data
|
||||
|
|
Loading…
Reference in a new issue