@@ -61,14 +61,14 @@ describe('IgxGrid - Clipboard #grid', () => {
6161
6262 let eventData = dispatchCopyEventOnGridBody ( fix ) ;
6363 expect ( copySpy ) . toHaveBeenCalledTimes ( 1 ) ;
64- expect ( eventData ) . toEqual ( 'ID;ProductNameHeader\r\n1;\r\n;** NetAdvantage **\r\n ' ) ;
64+ expect ( eventData ) . toEqual ( 'ID;ProductNameHeader\r\n1;\r\n;** NetAdvantage **' ) ;
6565
6666 grid . clipboardOptions . separator = ',' ;
6767 fix . detectChanges ( ) ;
6868
6969 eventData = dispatchCopyEventOnGridBody ( fix ) ;
7070 expect ( copySpy ) . toHaveBeenCalledTimes ( 2 ) ;
71- expect ( eventData ) . toEqual ( 'ID,ProductNameHeader\r\n1,\r\n,** NetAdvantage **\r\n ' ) ;
71+ expect ( eventData ) . toEqual ( 'ID,ProductNameHeader\r\n1,\r\n,** NetAdvantage **' ) ;
7272 } ) ;
7373
7474 it ( 'Copy data without headers' , ( ) => {
@@ -126,13 +126,13 @@ describe('IgxGrid - Clipboard #grid', () => {
126126
127127 let eventData = dispatchCopyEventOnGridBody ( fix ) ;
128128 expect ( copySpy ) . toHaveBeenCalledTimes ( 1 ) ;
129- expect ( eventData ) . toEqual ( 'ProductNameHeader\r\nNetAdvantage\r\nIgnite UI for Angular\r\n\r\n ' ) ;
129+ expect ( eventData ) . toEqual ( 'ProductNameHeader\r\nNetAdvantage\r\nIgnite UI for Angular\r\n' ) ;
130130 grid . clipboardOptions . copyFormatters = true ;
131131 fix . detectChanges ( ) ;
132132
133133 eventData = dispatchCopyEventOnGridBody ( fix ) ;
134134 expect ( copySpy ) . toHaveBeenCalledTimes ( 2 ) ;
135- expect ( eventData ) . toEqual ( 'ProductNameHeader\r\n** NetAdvantage **\r\n** Ignite UI for Angular **\r\n** null **\r\n ' ) ;
135+ expect ( eventData ) . toEqual ( 'ProductNameHeader\r\n** NetAdvantage **\r\n** Ignite UI for Angular **\r\n** null **' ) ;
136136 } ) ;
137137
138138 it ( 'Cancel gridCopy event ' , ( ) => {
0 commit comments