Skip to content

Commit 6f27322

Browse files
authored
ci: use valid sanic instance name (#157)
* ci: use valid sanic instance name Signed-off-by: Grant Timmerman <[email protected]> * ci: use simple sanic name Signed-off-by: Grant Timmerman <[email protected]>
1 parent 4365922 commit 6f27322

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cloudevents/tests/test_http_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
test_data = {"payload-content": "Hello World!"}
6868

69-
app = Sanic(__name__)
69+
app = Sanic("test_http_events")
7070

7171

7272
@app.route("/event", ["POST"])

cloudevents/tests/test_with_sanic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from cloudevents.tests import data as test_data
2020

2121
m = marshaller.NewDefaultHTTPMarshaller()
22-
app = Sanic(__name__)
22+
app = Sanic("test_with_sanic")
2323

2424

2525
@app.route("/is-ok", ["POST"])

0 commit comments

Comments
 (0)