Rollup merge of #103152 - GuillaumeGomez:named-arguments, r=notriddle

Use named arguments to make GUI test more clear

As you suggested `@notriddle.` The result looks like this.

r? `@notriddle`
This commit is contained in:
Matthias Krüger 2022-10-17 23:09:06 +02:00 committed by GitHub
commit 245b12e26e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 28 deletions

View File

@ -71,37 +71,37 @@ define-function: (
call-function: ( call-function: (
"check-colors", "check-colors",
( {
"ayu", // theme "theme": "ayu",
"rgb(197, 197, 197)", // main color "main_color": "rgb(197, 197, 197)",
"rgb(255, 255, 255)", // title color "title_color": "rgb(255, 255, 255)",
"rgb(255, 255, 255)", // fqn color "fqn_color": "rgb(255, 255, 255)",
"rgb(255, 160, 165)", // fqn type color "fqn_type_color": "rgb(255, 160, 165)",
"rgb(57, 175, 215)", // src link "src_link_color": "rgb(57, 175, 215)",
"rgb(83, 177, 219)", // sidebar link "sidebar_link_color": "rgb(83, 177, 219)",
), },
) )
call-function: ( call-function: (
"check-colors", "check-colors",
( {
"dark", // theme "theme": "dark",
"rgb(221, 221, 221)", // main color "main_color": "rgb(221, 221, 221)",
"rgb(221, 221, 221)", // title color "title_color": "rgb(221, 221, 221)",
"rgb(221, 221, 221)", // fqn color "fqn_color": "rgb(221, 221, 221)",
"rgb(45, 191, 184)", // fqn type color "fqn_type_color": "rgb(45, 191, 184)",
"rgb(210, 153, 29)", // src link "src_link_color": "rgb(210, 153, 29)",
"rgb(253, 191, 53)", // sidebar link "sidebar_link_color": "rgb(253, 191, 53)",
), },
) )
call-function: ( call-function: (
"check-colors", "check-colors",
( {
"light", // theme "theme": "light",
"rgb(0, 0, 0)", // main color "main_color": "rgb(0, 0, 0)",
"rgb(0, 0, 0)", // title color "title_color": "rgb(0, 0, 0)",
"rgb(0, 0, 0)", // fqn color "fqn_color": "rgb(0, 0, 0)",
"rgb(173, 55, 138)", // fqn type color "fqn_type_color": "rgb(173, 55, 138)",
"rgb(56, 115, 173)", // src link "src_link_color": "rgb(56, 115, 173)",
"rgb(53, 109, 164)", // sidebar link "sidebar_link_color": "rgb(53, 109, 164)",
), },
) )