From a53d992613a423a6f86179731467f8f07ba2542f Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Wed, 24 Jul 2019 23:53:37 -0700 Subject: [PATCH] fix(curriculum): Remove unnecessary assert message argument from English Front End Libraries challenges - 01 (#36408) * fix: removed assert msg argument * fix: removed more assert msg args * fix: removed assert msg missed Co-Authored-By: Oliver Eyton-Williams * fix: correct indentation --- ...ents-within-your-bootstrap-wells.english.md | 6 +++--- ...attributes-to-bootstrap-elements.english.md | 4 ++-- ...e-default-bootstrap-button-style.english.md | 4 ++-- ...t-optional-actions-with-btn-info.english.md | 8 ++++---- .../center-text-with-bootstrap.english.md | 4 ++-- ...a-block-element-bootstrap-button.english.md | 6 +++--- .../create-a-bootstrap-button.english.md | 6 +++--- .../create-a-bootstrap-headline.english.md | 10 +++++----- .../create-a-bootstrap-row.english.md | 8 ++++---- ...-to-target-with-jquery-selectors.english.md | 2 +- .../create-a-custom-heading.english.md | 8 ++++---- .../create-bootstrap-wells.english.md | 6 +++--- .../ditch-custom-css-for-bootstrap.english.md | 10 +++++----- .../give-each-element-a-unique-id.english.md | 12 ++++++------ ...-a-bootstrap-container-fluid-div.english.md | 6 +++--- .../label-bootstrap-buttons.english.md | 12 ++++++------ .../bootstrap/label-bootstrap-wells.english.md | 8 ++++---- ...ents-responsively-with-bootstrap.english.md | 8 ++++---- .../make-images-mobile-responsive.english.md | 10 +++++----- .../responsively-style-checkboxes.english.md | 6 +++--- ...responsively-style-radio-buttons.english.md | 6 +++--- .../split-your-bootstrap-row.english.md | 4 ++-- ...yle-text-inputs-as-form-controls.english.md | 8 ++++---- ...e-bootstrap-button-color-rainbow.english.md | 6 +++--- ...a-span-to-target-inline-elements.english.md | 8 ++++---- .../use-comments-to-clarify-code.english.md | 8 ++++---- ...-with-bootstrap-fluid-containers.english.md | 6 +++--- ...rid-to-put-elements-side-by-side.english.md | 8 ++++---- ...dangerous-action-with-btn-danger.english.md | 8 ++++---- ...t-inside-an-element-using-jquery.english.md | 10 +++++----- ...e-css-of-an-element-using-jquery.english.md | 4 ++-- .../clone-an-element-using-jquery.english.md | 6 +++--- .../delete-your-jquery-functions.english.md | 10 +++++----- .../disable-an-element-using-jquery.english.md | 6 +++--- .../remove-an-element-using-jquery.english.md | 4 ++-- ...sses-from-an-element-with-jquery.english.md | 6 +++--- ...child-of-an-element-using-jquery.english.md | 8 ++++---- ...t-elements-by-class-using-jquery.english.md | 4 ++-- ...rget-elements-by-id-using-jquery.english.md | 6 +++--- ...arget-even-elements-using-jquery.english.md | 6 +++--- ...ents-with-selectors-using-jquery.english.md | 2 +- ...ldren-of-an-element-using-jquery.english.md | 6 +++--- ...arent-of-an-element-using-jquery.english.md | 8 ++++---- ...t-with-multiple-jquery-selectors.english.md | 12 ++++++------ ...dto-to-move-elements-with-jquery.english.md | 6 +++--- ...jquery-to-modify-the-entire-page.english.md | 2 +- .../connect-redux-to-react.english.md | 6 +++--- ...onnect-redux-to-the-messages-app.english.md | 10 +++++----- .../extract-local-state-into-redux.english.md | 18 +++++++++--------- .../extract-state-logic-to-redux.english.md | 12 ++++++------ ...getting-started-with-react-redux.english.md | 6 +++--- .../manage-state-locally-first.english.md | 12 ++++++------ .../map-dispatch-to-props.english.md | 8 ++++---- .../map-state-to-props.english.md | 8 ++++---- .../moving-forward-from-here.english.md | 2 +- ...ovider-to-connect-redux-to-react.english.md | 8 ++++---- .../create-reusable-css-with-mixins.english.md | 12 ++++++------ ...of-css-styles-to-another-element.english.md | 4 ++-- .../sass/nest-css-with-sass.english.md | 2 +- ...nto-smaller-chunks-with-partials.english.md | 2 +- .../store-data-with-sass-variables.english.md | 8 ++++---- ...each-to-map-over-items-in-a-list.english.md | 8 ++++---- .../use-for-to-create-a-sass-loop.english.md | 12 ++++++------ ...else-to-add-logic-to-your-styles.english.md | 10 +++++----- 64 files changed, 230 insertions(+), 230 deletions(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md index 3dc0672250..1e97be2779 100644 --- a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md @@ -21,11 +21,11 @@ Nest three button elements within each of your well button elements within each of your div elements with class well. - testString: assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, 'Nest three button elements within each of your div elements with class well.'); + testString: assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3); - text: You should have a total of 6 button elements. - testString: assert($("button") && $("button").length > 5, 'You should have a total of 6 button elements.'); + testString: assert($("button") && $("button").length > 5); - text: Make sure all your button elements have closing tags. - testString: assert(code.match(/<\/button>/g) && code.match(/