-
Notifications
You must be signed in to change notification settings - Fork 30
fix: kill websocket.Notification #707
Conversation
@@ -51,6 +51,20 @@ | |||
"content-encoding": "aesgcm", | |||
"TTL": "60", | |||
} | |||
dummy_chid = str(uuid.uuid4()) | |||
dummy_uaid = str(uuid.uuid4()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dummy_uaid
is only used once. Does it need to be a string or can it stay a UUID?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
..was thinking similarly but our other tests' dummy uuids are strs. but let's move that way anyway
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and now we can use it
Current coverage is 100% (diff: 100%)@@ master #707 diff @@
====================================
Files 48 48
Lines 9764 9767 +3
Methods 0 0
Messages 0 0
Branches 0 0
====================================
+ Hits 9764 9767 +3
Misses 0 0
Partials 0 0
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r+
this was now dead code only misused by tests closes #706
this was now dead code only misused by tests
closes #706