@@ -917,12 +917,12 @@ describe('conversation-v1', function() {
917917 } ) ;
918918 } ) ;
919919
920- describe ( 'listEntityMentions ()' , function ( ) {
920+ describe ( 'listMentions ()' , function ( ) {
921921 it ( 'should check no parameters provided (negative test)' , function ( ) {
922- conversation . listEntityMentions ( { } , missingParameter ) ;
923- conversation . listEntityMentions ( null , missingParameter ) ;
924- conversation . listEntityMentions ( undefined , missingParameter ) ;
925- conversation . listEntityMentions ( { workspace_id : '123' } , missingParameter ) ;
922+ conversation . listMentions ( { } , missingParameter ) ;
923+ conversation . listMentions ( null , missingParameter ) ;
924+ conversation . listMentions ( undefined , missingParameter ) ;
925+ conversation . listMentions ( { workspace_id : '123' } , missingParameter ) ;
926926 } ) ;
927927
928928 it ( 'should generate a valid payload' , function ( ) {
@@ -944,7 +944,7 @@ describe('conversation-v1', function() {
944944 params . export +
945945 '&include_audit=' +
946946 params . include_audit ;
947- const req = conversation . listEntityMentions ( params , noop ) ;
947+ const req = conversation . listMentions ( params , noop ) ;
948948 assert . equal ( req . uri . href , path ) ;
949949 assert . equal ( req . method , 'GET' ) ;
950950 } ) ;
0 commit comments