Skip to content

Commit

Permalink
Rollup merge of #114537 - GuillaumeGomez:migrate-gui-test-color-29, r…
Browse files Browse the repository at this point in the history
…=notriddle

Migrate GUI colors test to original CSS color format

Follow-up of #111459.

r? ``@notriddle``
  • Loading branch information
matthiaskrgr committed Aug 6, 2023
2 parents 3d1c36e + 08ca824 commit 0c98f15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/rustdoc-gui/search-error.goml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ call-function: (
"check-colors",
{
"theme": "ayu",
"error_background": "rgb(79, 76, 76)",
"error_background": "#4f4c4c",
},
)
call-function: (
"check-colors",
{
"theme": "dark",
"error_background": "rgb(72, 72, 72)",
"error_background": "#484848",
},
)
call-function: (
"check-colors",
{
"theme": "light",
"error_background": "rgb(208, 204, 204)",
"error_background": "#d0cccc",
},
)

0 comments on commit 0c98f15

Please sign in to comment.