about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-05-23 19:53:43 +0200
committerGitHub <noreply@github.com>2023-05-23 19:53:43 +0200
commitf737ec40e6914c7a3d6cc36f742e031137dd0171 (patch)
tree633f6f3c026bab89c17147bf531e5e06ac70039c
parent20b6e5a1d840164f9825b54f7091e781250e6b5b (diff)
parent24be25f134ecadbcb235a46d76a37ffcbce15ce5 (diff)
downloadrust-f737ec40e6914c7a3d6cc36f742e031137dd0171.tar.gz
rust-f737ec40e6914c7a3d6cc36f742e031137dd0171.zip
Rollup merge of #111871 - GuillaumeGomez:migrate-gui-test-color-5, r=notriddle
Migrate GUI colors test to original CSS color format

Follow-up of https://github.com/rust-lang/rust/pull/111459.

r? `@notriddle`
-rw-r--r--tests/rustdoc-gui/jump-to-def-background.goml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rustdoc-gui/jump-to-def-background.goml b/tests/rustdoc-gui/jump-to-def-background.goml
index 3a7d48284d7..6adc36b0edb 100644
--- a/tests/rustdoc-gui/jump-to-def-background.goml
+++ b/tests/rustdoc-gui/jump-to-def-background.goml
@@ -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"))