@@ -655,7 +655,7 @@ describe( 'Manual link entry', () => {
655
655
} ) ;
656
656
657
657
let submitButton = screen . getByRole ( 'button' , {
658
- name : 'Apply ' ,
658
+ name : 'Save ' ,
659
659
} ) ;
660
660
661
661
expect ( submitButton ) . toBeDisabled ( ) ;
@@ -673,7 +673,7 @@ describe( 'Manual link entry', () => {
673
673
await user . keyboard ( '[Enter]' ) ;
674
674
675
675
submitButton = screen . getByRole ( 'button' , {
676
- name : 'Apply ' ,
676
+ name : 'Save ' ,
677
677
} ) ;
678
678
679
679
// Verify the UI hasn't allowed submission.
@@ -696,7 +696,7 @@ describe( 'Manual link entry', () => {
696
696
} ) ;
697
697
698
698
let submitButton = screen . queryByRole ( 'button' , {
699
- name : 'Apply ' ,
699
+ name : 'Save ' ,
700
700
} ) ;
701
701
702
702
expect ( submitButton ) . toBeDisabled ( ) ;
@@ -715,7 +715,7 @@ describe( 'Manual link entry', () => {
715
715
await user . click ( submitButton ) ;
716
716
717
717
submitButton = screen . queryByRole ( 'button' , {
718
- name : 'Apply ' ,
718
+ name : 'Save ' ,
719
719
} ) ;
720
720
721
721
// Verify the UI hasn't allowed submission.
@@ -1809,7 +1809,7 @@ describe( 'Addition Settings UI', () => {
1809
1809
1810
1810
// check that the "Apply" button is disabled by default.
1811
1811
const submitButton = screen . queryByRole ( 'button' , {
1812
- name : 'Apply ' ,
1812
+ name : 'Save ' ,
1813
1813
} ) ;
1814
1814
1815
1815
expect ( submitButton ) . toBeDisabled ( ) ;
@@ -2242,7 +2242,7 @@ describe( 'Controlling link title text', () => {
2242
2242
expect ( textInput ) . toHaveValue ( textValue ) ;
2243
2243
2244
2244
const submitButton = screen . queryByRole ( 'button' , {
2245
- name : 'Apply ' ,
2245
+ name : 'Save ' ,
2246
2246
} ) ;
2247
2247
2248
2248
await user . click ( submitButton ) ;
0 commit comments