]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #107027 - GuillaumeGomez:rm-extra-removal, r=tmiasko
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Thu, 19 Jan 2023 10:19:36 +0000 (11:19 +0100)
committerGitHub <noreply@github.com>
Thu, 19 Jan 2023 10:19:36 +0000 (11:19 +0100)
commitd1c879f02eed283edab08f92b3f65b069556bba5
treeb7fa805f4bf1c45cdbc531dfd5330d1178d7e79b
parent246daa49ee5968966dec192057a9163b94e90601
parentf46f9231a8058bcbfc2c1442f86c072f5bd92ddc
Rollup merge of #107027 - GuillaumeGomez:rm-extra-removal, r=tmiasko

Remove extra removal from test path

I don't know how to describe it shortly so better show what it's doing instead. Currently, there is one extra "rust/" before the test folder when running tests:

```
failures:

---- [rustdoc] rust/tests/rustdoc/redirect.rs stdout ----
```

This is a bit annoying when copying the test path. This is due to the moving of the `tests` folder one level up, meaning we were trimming too much of the `root_path`.

Now it is again displaying the correct path:

```
failures:

---- [rustdoc] tests/rustdoc/redirect.rs stdout ----
```