diff --git a/curriculum/challenges/english/blocks/workshop-registration-form/62b30924c5e4ef0daba23b5e.md b/curriculum/challenges/english/blocks/workshop-registration-form/62b30924c5e4ef0daba23b5e.md index 7a4f595f469..afee413d4d1 100644 --- a/curriculum/challenges/english/blocks/workshop-registration-form/62b30924c5e4ef0daba23b5e.md +++ b/curriculum/challenges/english/blocks/workshop-registration-form/62b30924c5e4ef0daba23b5e.md @@ -30,8 +30,8 @@ assert.exists(new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type')) Your `fieldset:last-of-type` should have `border-bottom` set as `none`. ```js -const borderBottom = new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type')?.borderBottom; -assert.oneOf(borderBottom, ['none', 'medium none', 'medium']); +const borderBottomStyle = new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type')?.borderBottomStyle; +assert.equal(borderBottomStyle, 'none'); ``` # --seed--