#28638 closed defect (bug) (fixed)
Update wpautop() Unit Tests to handle changes for figcaption, option, and select
| Reported by: | rachelbaker | Owned by: | wonderboymusic |
|---|---|---|---|
| Priority: | normal | Milestone: | 4.0 |
| Component: | Formatting | Version: | 4.0 |
| Severity: | normal | Keywords: | has-patch needs-testing wpautop |
| Cc: | Focuses: |
Description
In #25646 figcaption and in #22230 option and select tags were removed from the wpautop block level elements. The related unit test from #25856 need a minor adjustment to account for the changes and pass as expected.
1) Tests_Formatting_Autop::test_that_wpautop_treats_block_level_elements_as_blocks Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ <pre>foo</pre> -<select>foo</select> -<option>foo</option> +<p><select>foo</select></p> +<p><option>foo</option></p> @@ @@ <figure>foo</figure> -<figcaption>foo</figcaption> +<p><figcaption>foo</figcaption></p> <details>foo</details> <menu>foo</menu> <summary>foo</summary>'
Attachments (1)
Change History (5)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
updated autop unit tests