ci: use valid sanic instance name (#157)

* ci: use valid sanic instance name

Signed-off-by: Grant Timmerman <744973+grant@users.noreply.github.com>

* ci: use simple sanic name

Signed-off-by: Grant Timmerman <744973+grant@users.noreply.github.com>
This commit is contained in:
Grant Timmerman 2022-04-08 16:19:50 -07:00 committed by GitHub
parent 43659228ae
commit 6f27322146
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ invalid_cloudevent_request_body = [
test_data = {"payload-content": "Hello World!"}
app = Sanic(__name__)
app = Sanic("test_http_events")
@app.route("/event", ["POST"])

View File

@ -19,7 +19,7 @@ from cloudevents.sdk.event import v1
from cloudevents.tests import data as test_data
m = marshaller.NewDefaultHTTPMarshaller()
app = Sanic(__name__)
app = Sanic("test_with_sanic")
@app.route("/is-ok", ["POST"])