diff --git a/test.js b/test.js index ed42bd1..2e63d4e 100644 --- a/test.js +++ b/test.js @@ -7,7 +7,7 @@ var getAnswerTest = function () { }); }; var getChoiceTest = function () { - smartcli.getChoice('What to you like best?', ['Cars', 'Planes', 'Boats'], function (answer) { + smartcli.getChoice('What music do you like to hear?', ['Jazz', 'Blues', 'Classical'], function (answer) { console.log('The answer is: ' + answer); getCwdTest(); }); diff --git a/ts/test.ts b/ts/test.ts index abc1a1a..e809186 100644 --- a/ts/test.ts +++ b/ts/test.ts @@ -9,7 +9,7 @@ var getAnswerTest = function() { }; var getChoiceTest = function() { - smartcli.getChoice('What to you like best?',['Cars','Planes','Boats'],function(answer){ + smartcli.getChoice('What music do you like to hear?',['Jazz','Blues','Classical'],function(answer){ console.log('The answer is: ' + answer); getCwdTest(); });