File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -643,7 +643,7 @@ describe('WidgetModel', function () {
643
643
} ) ;
644
644
expect ( this . widget . _msg_buffer_callbacks ) . to . not . equals ( null ) ;
645
645
// have the comm send a status idle message
646
- callbacks . iopub . status ( {
646
+ this . comm . send . lastCall . args [ 1 ] . iopub . status ( {
647
647
content : {
648
648
execution_state : 'idle' ,
649
649
} ,
@@ -662,7 +662,7 @@ describe('WidgetModel', function () {
662
662
} ,
663
663
buffer_paths : [ ] ,
664
664
} ) ;
665
- callbacks . iopub . status ( {
665
+ this . comm . send . lastCall . args [ 1 ] . iopub . status ( {
666
666
content : {
667
667
execution_state : 'idle' ,
668
668
} ,
@@ -687,7 +687,7 @@ describe('WidgetModel', function () {
687
687
state : { a : 'sync test - 2' } ,
688
688
buffer_paths : [ ] ,
689
689
} ) ;
690
- callbacks . iopub . status ( {
690
+ this . comm . send . lastCall . args [ 1 ] . iopub . status ( {
691
691
content : {
692
692
execution_state : 'idle' ,
693
693
} ,
@@ -703,7 +703,7 @@ describe('WidgetModel', function () {
703
703
} ,
704
704
buffer_paths : [ ] ,
705
705
} ) ;
706
- callbacks . iopub . status ( {
706
+ this . comm . send . lastCall . args [ 1 ] . iopub . status ( {
707
707
content : {
708
708
execution_state : 'idle' ,
709
709
} ,
You can’t perform that action at this time.
0 commit comments