@@ -786,7 +786,7 @@ module('Integration: Agenda', moduleConfig, () => {
786786 const rowHeight = 77 ;
787787 const $element = instance . $element ( ) ;
788788 const expectedWidth = getOuterWidth ( $element . find ( '.dx-scheduler-date-table' ) ) ;
789- const agendaStub = sinon . stub ( agenda , '_getRowHeight ' ) . returns ( rowHeight ) ;
789+ const agendaStub = sinon . stub ( agenda , 'getRowHeight ' ) . returns ( rowHeight ) ;
790790
791791 try {
792792 instance . option ( 'dataSource' , [
@@ -1565,7 +1565,7 @@ module('Integration: Agenda', moduleConfig, () => {
15651565 instance . option ( 'dataSource' , data ) ;
15661566 await waitAsync ( 0 ) ;
15671567
1568- const calculatedRows = agendaWorkspace . _rows [ 0 ] ;
1568+ const calculatedRows = agendaWorkspace . rows [ 0 ] ;
15691569 assert . equal ( calculatedRows . length , 65 , 'Rows are OK' ) ;
15701570
15711571 $ . each ( calculatedRows , function ( index , item ) {
@@ -1606,7 +1606,7 @@ module('Integration: Agenda', moduleConfig, () => {
16061606 instance . option ( 'dataSource' , data ) ;
16071607 await waitAsync ( 0 ) ;
16081608
1609- const calculatedRows = agendaWorkspace . _rows ;
1609+ const calculatedRows = agendaWorkspace . rows ;
16101610 assert . deepEqual ( calculatedRows , [ [ 1 , 2 , 2 , 2 , 2 ] ] , 'Rows are OK' ) ;
16111611 } finally {
16121612 endViewDateStub . restore ( ) ;
@@ -1640,7 +1640,7 @@ module('Integration: Agenda', moduleConfig, () => {
16401640 instance . option ( 'dataSource' , data ) ;
16411641 await waitAsync ( 0 ) ;
16421642
1643- const calculatedRows = agendaWorkspace . _rows ;
1643+ const calculatedRows = agendaWorkspace . rows ;
16441644 assert . deepEqual ( calculatedRows , [ [ 0 , 1 , 1 , 1 , 0 ] ] , 'Rows are OK' ) ;
16451645 } finally {
16461646 endViewDateStub . restore ( ) ;
@@ -1671,7 +1671,7 @@ module('Integration: Agenda', moduleConfig, () => {
16711671 instance . option ( 'dataSource' , data ) ;
16721672 await waitAsync ( 0 ) ;
16731673
1674- const calculatedRows = agendaWorkspace . _rows ;
1674+ const calculatedRows = agendaWorkspace . rows ;
16751675 assert . deepEqual ( calculatedRows , [ [ 1 , 1 , 1 , 1 , 0 ] ] , 'Rows are OK' ) ;
16761676 } finally {
16771677 endViewDateStub . restore ( ) ;
@@ -1709,7 +1709,7 @@ module('Integration: Agenda', moduleConfig, () => {
17091709 instance . option ( 'dataSource' , data ) ;
17101710 await waitAsync ( 0 ) ;
17111711
1712- const calculatedRows = agendaWorkspace . _rows ;
1712+ const calculatedRows = agendaWorkspace . rows ;
17131713 assert . deepEqual ( calculatedRows , [ [ 0 , 1 , 1 , 0 , 1 , 1 , 0 ] ] , 'Rows are OK' ) ;
17141714 } finally {
17151715 endViewDateStub . restore ( ) ;
0 commit comments