Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
format
  • Loading branch information
graebm committed Dec 20, 2022
commit 2a026ce62c99bd8c7b20bf865b03910550e0e87d
4 changes: 2 additions & 2 deletions test/test_eventstream_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# TODO: setup permanent online echo server we can hit from tests
RUN_LOCALHOST_TESTS = os.getenv('EVENTSTREAM_ECHO_TEST')

#init_logging(LogLevel.Trace, 'stderr')
# init_logging(LogLevel.Trace, 'stderr')


class ConnectionRecord:
Expand Down Expand Up @@ -296,7 +296,7 @@ def test_stream_message_echo(self):
Header.from_byte_buf('echo-byte-buf', b'\x00\xff\x0f\xf0'),
Header.from_string('echo-string', 'noodles'),
# utf-8 breaks echo test. don't get response.
#Header.from_string('echo-string-utf8', '--\u1234--'),
# Header.from_string('echo-string-utf8', '--\u1234--'),
Header.from_timestamp('echo-timestamp', time.time()),
Header.from_uuid('echo-uuid', UUID('01234567-89ab-cdef-0123-456789abcdef')),
]
Expand Down
2 changes: 1 addition & 1 deletion test/test_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# logging.basicConfig(format="%(message)s", level=logging.DEBUG)

# uncomment this for logging from our websockets client
init_logging(LogLevel.Trace, 'stderr')
# init_logging(LogLevel.Trace, 'stderr')


@dataclass
Expand Down