Skip to content

Commit

Permalink
jupyter.com => jupyter.org
Browse files Browse the repository at this point in the history
  • Loading branch information
afshin committed May 24, 2022
1 parent 726e35a commit 01aece0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/services/events/test_api.py
@@ -1,7 +1,6 @@
import json
import logging
import pathlib
from contextlib import nullcontext

import pytest
import tornado
Expand Down Expand Up @@ -40,7 +39,7 @@ async def test_subscribe_websocket(jp_ws_fetch, event_bus):

payload_1 = """\
{
"schema_name": "event.mock.jupyter.com/message",
"schema_name": "event.mock.jupyter.org/message",
"version": 1,
"event": {
"event_message": "Hello, world!"
Expand All @@ -50,7 +49,7 @@ async def test_subscribe_websocket(jp_ws_fetch, event_bus):

payload_2 = """\
{
"schema_name": "event.mock.jupyter.com/message",
"schema_name": "event.mock.jupyter.org/message",
"event": {
"event_message": "Hello, world!"
}
Expand All @@ -68,7 +67,7 @@ async def test_subscribe_websocket(jp_ws_fetch, event_bus):

payload_4 = """\
{
"schema_name": "event.mock.jupyter.com/message",
"schema_name": "event.mock.jupyter.org/message",
"version": 1
}
"""
Expand All @@ -89,7 +88,7 @@ async def test_post_event_400(jp_fetch, event_bus, payload):

payload_5 = """\
{
"schema_name": "event.mock.jupyter.com/message",
"schema_name": "event.mock.jupyter.org/message",
"version": 1,
"event": {
"message": "Hello, world!"
Expand All @@ -99,7 +98,7 @@ async def test_post_event_400(jp_fetch, event_bus, payload):

payload_6 = """\
{
"schema_name": "event.mock.jupyter.com/message",
"schema_name": "event.mock.jupyter.org/message",
"version": 2,
"event": {
"message": "Hello, world!"
Expand Down

0 comments on commit 01aece0

Please sign in to comment.