Skip to content

Commit 188488e

Browse files
committed
fix tests
1 parent bd3fb86 commit 188488e

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tests/python/lib/k2_server.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,15 @@ def start(self, start_msgs=None):
3939
else:
4040
start_msgs = start_msgs or []
4141
start_msgs.append("Starting to accept clients.")
42+
4243
super(K2Server, self).start(start_msgs)
4344

45+
if self._is_json_log_enabled():
46+
self.assert_json_log_tags(expect=[
47+
{"msg": "Starting to accept clients.", "tags": set()}
48+
])
49+
50+
4451
def stop(self):
4552
super(K2Server, self).stop()
4653

0 commit comments

Comments
 (0)