You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertsorted(text_channels[:5], key=sort_key) ==sorted(auto_channel.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to only find first 5 text channels"
93
-
assertsorted(voice_channels[:5], key=sort_key) ==sorted(auto_channel2.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to only find first 5 voice channels"
94
-
95
-
awaitauto_channel.update(exclude_pattern=None)
96
-
awaitauto_channel2.update(exclude_pattern=None)
97
-
auto_channel._process()
98
-
auto_channel2._process()
99
-
assertsorted(text_channels, key=sort_key) ==sorted(auto_channel.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to find all text channels"
100
-
assertsorted(voice_channels, key=sort_key) ==sorted(auto_channel2.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to find all voice channels"
assertsorted(text_channels[:5], key=sort_key) ==sorted(auto_channel.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to only find first 5 text channels"
55
+
assertsorted(voice_channels[:5], key=sort_key) ==sorted(auto_channel2.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to only find first 5 voice channels"
56
+
57
+
awaitauto_channel.update(exclude_pattern=None)
58
+
awaitauto_channel2.update(exclude_pattern=None)
59
+
auto_channel._process()
60
+
auto_channel2._process()
61
+
assertsorted(text_channels, key=sort_key) ==sorted(auto_channel.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to find all text channels"
62
+
assertsorted(voice_channels, key=sort_key) ==sorted(auto_channel2.channels, key=sort_key), "Correct behavior would be for AutoCHANNEL to find all voice channels"
0 commit comments