diff --git a/content/patterns/slider/examples/js/slider-rating.js b/content/patterns/slider/examples/js/slider-rating.js index e27af43935..4eea74a725 100644 --- a/content/patterns/slider/examples/js/slider-rating.js +++ b/content/patterns/slider/examples/js/slider-rating.js @@ -80,7 +80,7 @@ class RatingSlider { getValueText(value) { switch (value) { case 0: - return 'no satisfaction rating selected'; + return 'Choose a rating from one to ten where 10 is extremely satisfied'; case 1: return 'one, extremely dissatisfied'; diff --git a/test/tests/slider_slider-rating.js b/test/tests/slider_slider-rating.js index 2c05675559..c802d3af3e 100644 --- a/test/tests/slider_slider-rating.js +++ b/test/tests/slider_slider-rating.js @@ -13,7 +13,8 @@ const ex = { ratingMax: '10', ratingMin: '0', ratingDefault: '0', - ratingDefaultValue: 'no rating on the 10 point satisfaction scale selected', + ratingDefaultValue: + 'Choose a rating from one to ten where 10 is extremely satisfied', ratingInc: 1, ratingPageInc: 2, }; @@ -37,7 +38,8 @@ const getRatingValueAndText = function (v, change) { switch (value) { case 0: - valuetext = 'no satisfaction rating selected'; + valuetext = + 'Choose a rating from one to ten where 10 is extremely satisfied'; break; case 1: