about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2023-06-08 10:15:11 +0200
committerGitHub <noreply@github.com>2023-06-08 10:15:11 +0200
commit53ee1858554fccc30afebf408d976b3813d17ecd (patch)
tree16cfd4a78b2abc22e35f518595402dc9be9a0247
parent737dbb04d64645b73e3d6ce5a6e8a67df6706787 (diff)
parent3522baa8ba671cd2eb07f077424c0073d152aad6 (diff)
downloadrust-53ee1858554fccc30afebf408d976b3813d17ecd.tar.gz
rust-53ee1858554fccc30afebf408d976b3813d17ecd.zip
Rollup merge of #112388 - GuillaumeGomez:migrate-gui-test-color-12, 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/theme-change.goml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rustdoc-gui/theme-change.goml b/tests/rustdoc-gui/theme-change.goml
index ae694721389..e4b031b735e 100644
--- a/tests/rustdoc-gui/theme-change.goml
+++ b/tests/rustdoc-gui/theme-change.goml
@@ -3,9 +3,9 @@ go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
 set-local-storage: {"rustdoc-use-system-theme": "false", "rustdoc-theme": "dark"}
 reload:
 
-store-value: (background_light, "rgb(255, 255, 255)")
-store-value: (background_dark, "rgb(53, 53, 53)")
-store-value: (background_ayu, "rgb(15, 20, 25)")
+store-value: (background_light, "white")
+store-value: (background_dark, "#353535")
+store-value: (background_ayu, "#0f1419")
 
 click: "#settings-menu"
 wait-for: "#theme-ayu"