Skip to content

Commit

Permalink
Auto merge of #115731 - GuillaumeGomez:migrate-gui-test-color-40, r=n…
Browse files Browse the repository at this point in the history
…otriddle

Migrate GUI colors test to original CSS color format

Follow-up of #111459.

r? `@notriddle`
  • Loading branch information
bors committed Sep 10, 2023
2 parents 6645a93 + 344ac25 commit 8e37c50
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/rustdoc-gui/search-no-result.goml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ define-function: (

call-function: ("check-no-result", {
"theme": "ayu",
"link": "rgb(57, 175, 215)",
"link_hover": "rgb(57, 175, 215)",
"link": "#39afd7",
"link_hover": "#39afd7",
})
call-function: ("check-no-result", {
"theme": "dark",
"link": "rgb(210, 153, 29)",
"link_hover": "rgb(210, 153, 29)",
"link": "#d2991d",
"link_hover": "#d2991d",
})
call-function: ("check-no-result", {
"theme": "light",
"link": "rgb(56, 115, 173)",
"link_hover": "rgb(56, 115, 173)",
"link": "#3873ad",
"link_hover": "#3873ad",
})

0 comments on commit 8e37c50

Please sign in to comment.