Skip to content

Commit

Permalink
Rollup merge of #111871 - GuillaumeGomez:migrate-gui-test-color-5, 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 authored May 23, 2023
2 parents 20b6e5a + 24be25f commit f737ec4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/rustdoc-gui/jump-to-def-background.goml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ define-function: (
},
)

call-function: ("check-background-color", ("ayu", "rgb(51, 51, 51)"))
call-function: ("check-background-color", ("dark", "rgb(51, 51, 51)"))
call-function: ("check-background-color", ("light", "rgb(238, 238, 238)"))
call-function: ("check-background-color", ("ayu", "#333"))
call-function: ("check-background-color", ("dark", "#333"))
call-function: ("check-background-color", ("light", "#eee"))

0 comments on commit f737ec4

Please sign in to comment.