about summary refs log tree commit diff
path: root/src/test/rustdoc-gui/toggle-docs.goml
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2022-10-07 20:17:05 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2022-10-07 20:17:22 +0200
commit8d19d53c60bcebf81030058b0b61f9a286a9c2d6 (patch)
tree5e66df0c887026a07b4d8e017ed531a5552e3fee /src/test/rustdoc-gui/toggle-docs.goml
parent6d4013d983c8090a0319f049214b678d7a5e5f22 (diff)
downloadrust-8d19d53c60bcebf81030058b0b61f9a286a9c2d6.tar.gz
rust-8d19d53c60bcebf81030058b0b61f9a286a9c2d6.zip
Update rustdoc-gui test to new browser-ui-test version
Diffstat (limited to 'src/test/rustdoc-gui/toggle-docs.goml')
-rw-r--r--src/test/rustdoc-gui/toggle-docs.goml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/rustdoc-gui/toggle-docs.goml b/src/test/rustdoc-gui/toggle-docs.goml
index 63962b576df..8c9fd0a8866 100644
--- a/src/test/rustdoc-gui/toggle-docs.goml
+++ b/src/test/rustdoc-gui/toggle-docs.goml
@@ -1,5 +1,5 @@
 // Checks that the documentation toggles have the correct position, style and work as expected.
-goto: file://|DOC_PATH|/test_docs/index.html
+goto: "file://" + |DOC_PATH| + "/test_docs/index.html"
 assert-attribute: ("#main-content > details.top-doc", {"open": ""})
 assert-text: ("#toggle-all-docs", "[−]")
 click: "#toggle-all-docs"
@@ -13,7 +13,7 @@ wait-for-attribute: ("#main-content > details.top-doc", {"open": ""})
 assert-text: ("#toggle-all-docs", "[−]")
 
 // Check that it works on non-module pages as well.
-goto: file://|DOC_PATH|/test_docs/struct.Foo.html
+goto: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"
 // We first check that everything is visible.
 assert-text: ("#toggle-all-docs", "[−]")
 assert-attribute: ("#implementations-list details.rustdoc-toggle", {"open": ""}, ALL)