diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-06-25 13:48:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-25 13:48:37 +0200 |
| commit | d2f82a00d00ab2f76a0a24bb24fffbe9af770b29 (patch) | |
| tree | 2b5b85e8e967477ff9263afe80b757a1dba6d8a6 | |
| parent | 75f6a7aa00d5872c90569c62acec4c875b00e95a (diff) | |
| parent | 0979bf74131ab757b0824d229f7f714d0b54259c (diff) | |
| download | rust-d2f82a00d00ab2f76a0a24bb24fffbe9af770b29.tar.gz rust-d2f82a00d00ab2f76a0a24bb24fffbe9af770b29.zip | |
Rollup merge of #113023 - GuillaumeGomez:migrate-gui-test-color-17, 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/docblock-code-block-line-number.goml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rustdoc-gui/docblock-code-block-line-number.goml b/tests/rustdoc-gui/docblock-code-block-line-number.goml index 4c36394a30c..a50449e1701 100644 --- a/tests/rustdoc-gui/docblock-code-block-line-number.goml +++ b/tests/rustdoc-gui/docblock-code-block-line-number.goml @@ -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. |
