From 6d9d0c992e682fa4398bd2114a8eeb6a676c57ed Mon Sep 17 00:00:00 2001 From: Stuart Taylor Date: Mon, 8 Oct 2018 09:58:12 +0100 Subject: [PATCH] fix(test): Remove placholder text I broke the test trying out a find/replace regex. This PR fixes it. --- .../make-motion-more-natural-using-a-bezier-curve.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/make-motion-more-natural-using-a-bezier-curve.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/make-motion-more-natural-using-a-bezier-curve.english.md index 9a25ebbb0e..f4a2ebe951 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/make-motion-more-natural-using-a-bezier-curve.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/make-motion-more-natural-using-a-bezier-curve.english.md @@ -25,7 +25,7 @@ Change value of the animation-timing-function of the element with t ```yml tests: - text: 'The value of the animation-timing-function property for the element with the id green should be a cubic-bezier function with x1, y1, x2, y2 values as specified.' - testString: 'assert($("#green").css("animation-timing-function") == "cubic-bezier(0.311, 0.441, 0.444, 1.649)", "The value of the animation-timing-function property for the element with the id green should be a cubic-bezier function with x1, y1, x2, #{{TEXT}}' + testString: 'assert($("#green").css("animation-timing-function") == "cubic-bezier(0.311, 0.441, 0.444, 1.649)", "The value of the animation-timing-function property for the element with the id green should be a cubic-bezier function with x1, y1, x2, y2 values as specified.' ```