diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-08-15 20:34:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-15 20:34:26 +0200 |
| commit | 79bc72a5f9db3ec419317cb8a1944c9ca5efadbc (patch) | |
| tree | 134bfd8f2c33a3694becdb538a64faf293910672 | |
| parent | a830834b9f3251f2bddff0a6526ac90e4cb00c9f (diff) | |
| parent | a826cdbc2145b9de6e36fcc30197a6b6aafb6f39 (diff) | |
| download | rust-79bc72a5f9db3ec419317cb8a1944c9ca5efadbc.tar.gz rust-79bc72a5f9db3ec419317cb8a1944c9ca5efadbc.zip | |
Rollup merge of #114853 - GuillaumeGomez:migrate-gui-test-color-33, 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/unsafe-fn.goml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rustdoc-gui/unsafe-fn.goml b/tests/rustdoc-gui/unsafe-fn.goml index 51007b653d9..8d26f15f37f 100644 --- a/tests/rustdoc-gui/unsafe-fn.goml +++ b/tests/rustdoc-gui/unsafe-fn.goml @@ -23,6 +23,6 @@ define-function: ( }, ) -call-function: ("sup-check", ("dark", "rgb(221, 221, 221)")) -call-function: ("sup-check", ("ayu", "rgb(197, 197, 197)")) -call-function: ("sup-check", ("light", "rgb(0, 0, 0)")) +call-function: ("sup-check", ("ayu", "#c5c5c5")) +call-function: ("sup-check", ("dark", "#ddd")) +call-function: ("sup-check", ("light", "black")) |
