about summary refs log tree commit diff
path: root/tests/rustdoc-gui/source-code-page.goml
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2024-04-05 21:38:55 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2024-04-05 21:38:55 +0200
commit7659ef47f03f4e2bbbef65856427add98f898ef5 (patch)
treef2069567de13688a16cd07f8e61a75cf0f0da14f /tests/rustdoc-gui/source-code-page.goml
parent5958f5e08fa88ee95ede8c00f1b89befe0372d54 (diff)
downloadrust-7659ef47f03f4e2bbbef65856427add98f898ef5.tar.gz
rust-7659ef47f03f4e2bbbef65856427add98f898ef5.zip
Use `include` command to reduce code duplication
Diffstat (limited to 'tests/rustdoc-gui/source-code-page.goml')
-rw-r--r--tests/rustdoc-gui/source-code-page.goml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rustdoc-gui/source-code-page.goml b/tests/rustdoc-gui/source-code-page.goml
index e29d123d227..619d2b37d8d 100644
--- a/tests/rustdoc-gui/source-code-page.goml
+++ b/tests/rustdoc-gui/source-code-page.goml
@@ -1,4 +1,5 @@
 // Checks that the interactions with the source code pages are working as expected.
+include: "utils.goml"
 go-to: "file://" + |DOC_PATH| + "/src/test_docs/lib.rs.html"
 show-text: true
 // Check that we can click on the line number.
@@ -23,8 +24,7 @@ define-function: (
     "check-colors",
     [theme, color, background_color, highlight_color, highlight_background_color],
     block {
-        set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
-        reload:
+        call-function: ("switch-theme", {"theme": |theme|})
         assert-css: (
             ".src-line-numbers > a:not(.line-highlighted)",
             {"color": |color|, "background-color": |background_color|},