diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-03-31 13:09:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-31 13:09:52 +0200 |
| commit | c6764c982d71dd63ad43f9e70c5b7d5bdca7617c (patch) | |
| tree | 6e5a25295168d38d5b277b6bf717103bf608d30e | |
| parent | 14d8bfdbfdd7a3202c5d5c673d8c83fea555fe54 (diff) | |
| parent | a4a9fff5947df86292a6a5700782aeaaa7a645ca (diff) | |
| download | rust-c6764c982d71dd63ad43f9e70c5b7d5bdca7617c.tar.gz rust-c6764c982d71dd63ad43f9e70c5b7d5bdca7617c.zip | |
Rollup merge of #95470 - GuillaumeGomez:fix-gui-spurious-test, r=notriddle
Fix last rustdoc-gui spurious test This should the last spurious failing GUI test from https://github.com/rust-lang/rust/issues/93784. r? ``@notriddle``
| -rw-r--r-- | src/test/rustdoc-gui/search-result-display.goml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/rustdoc-gui/search-result-display.goml b/src/test/rustdoc-gui/search-result-display.goml index 823ea67b1b0..ff792eced70 100644 --- a/src/test/rustdoc-gui/search-result-display.goml +++ b/src/test/rustdoc-gui/search-result-display.goml @@ -2,8 +2,7 @@ goto: file://|DOC_PATH|/test_docs/index.html size: (900, 1000) write: (".search-input", "test") -// Waiting for the search results to appear... -wait-for: "#titles" +wait-for: "#search-settings" // The width is returned by "getComputedStyle" which returns the exact number instead of the // CSS rule which is "50%"... assert-css: (".search-results div.desc", {"width": "295px"}) |
