Skip to content

Commit

Permalink
Rollup merge of #113023 - GuillaumeGomez:migrate-gui-test-color-17, 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 Jun 25, 2023
2 parents 75f6a7a + 0979bf7 commit d2f82a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/rustdoc-gui/docblock-code-block-line-number.goml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ define-function: (
)
call-function: ("check-colors", {
"theme": "ayu",
"color": "rgb(92, 103, 115)",
"color": "#5c6773",
})
call-function: ("check-colors", {
"theme": "dark",
"color": "rgb(59, 145, 226)",
"color": "#3b91e2",
})
call-function: ("check-colors", {
"theme": "light",
"color": "rgb(198, 126, 45)",
"color": "#c67e2d",
})

// The first code block has two lines so let's check its `<pre>` elements lists both of them.
Expand Down

0 comments on commit d2f82a0

Please sign in to comment.