File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ def is_auth_required(self):
5454 return True
5555
5656 def affected_channels (self ):
57- return list (self ._channels )
57+ return sorted (self ._channels )
5858
5959 def affected_channels_groups (self ):
60- return list (self ._groups )
60+ return sorted (self ._groups )
6161
6262 def request_timeout (self ):
6363 return self .pubnub .config .non_subscribe_request_timeout
Original file line number Diff line number Diff line change @@ -108,10 +108,10 @@ def is_auth_required(self):
108108 return True
109109
110110 def affected_channels (self ):
111- return list (self ._channels )
111+ return sorted (self ._channels )
112112
113113 def affected_channels_groups (self ):
114- return list (self ._groups )
114+ return sorted (self ._groups )
115115
116116 def request_timeout (self ):
117117 return self .pubnub .config .subscribe_request_timeout
Original file line number Diff line number Diff line change 1+ [pytest]
2+ asyncio_mode = auto
You can’t perform that action at this time.
0 commit comments