Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbox committed Dec 7, 2023
1 parent 622f247 commit 65e7392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api/test_swagger_ui.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from connexion.middleware.swagger_ui import SwaggerUIConfig


def test_swagger(simple_app):
def test_simple(simple_app):
app_client = simple_app.test_client()
for api in simple_app.middleware.apis:
if api.kwargs['swagger_ui_options']:
Expand All @@ -16,7 +16,7 @@ def test_swagger(simple_app):
assert response.status_code == 200


def test_openapi(simple_openapi_app):
def test_simple_openapi(simple_openapi_app):
app_client = simple_openapi_app.test_client()
for api in simple_openapi_app.middleware.apis:
if api.kwargs['swagger_ui_options']:
Expand Down

0 comments on commit 65e7392

Please sign in to comment.