File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -267,10 +267,10 @@ def skill_not_active():
267
267
# confirm all expected messages are sent
268
268
expected_messages = [
269
269
"recognizer_loop:utterance" ,
270
+ # global stop trigger
270
271
"mycroft.stop" ,
271
272
"ovos.common_play.stop" ,
272
273
"ovos.common_play.stop.response" ,
273
- # global stop trigger
274
274
f"{ self .skill_id } .stop" , # internal, @killable_events
275
275
f"{ self .skill_id } .stop.response" , # skill reporting nothing to stop
276
276
f"{ self .new_skill_id } .stop" , # internal, @killable_events
@@ -289,6 +289,9 @@ def skill_not_active():
289
289
self .assertTrue (m in mtypes )
290
290
291
291
# sanity check stop triggered
292
+ print (mtypes ) # debug, see it in github actions before the exception...
293
+ for m in mtypes :
294
+ print (m ) # debug, see it in github actions before the exception...
292
295
self .assertEqual (messages [- 1 ].data ["utterance" ], "old stop called" )
293
296
294
297
messages = []
You can’t perform that action at this time.
0 commit comments