fix(curriculum): updated registration form step 44 to have borderBottomStyle set to none (#67026)

This commit is contained in:
Kate
2026-04-21 15:08:19 +01:00
committed by GitHub
parent 9518157219
commit d524c397e6
@@ -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--