diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-10-21 19:22:37 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-10-21 19:22:37 +0200 |
| commit | f729f4a75e1dda17cb7bcf1e649aec4c68ad9c75 (patch) | |
| tree | e1b9706b668dbd4fbd01db365ab16b469dc219fb /src | |
| parent | 9d8de1e30ab0b855add8984c431b5149a9ecc824 (diff) | |
| download | rust-f729f4a75e1dda17cb7bcf1e649aec4c68ad9c75.tar.gz rust-f729f4a75e1dda17cb7bcf1e649aec4c68ad9c75.zip | |
Update failing test
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/rustdoc/assoc-consts.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/rustdoc/assoc-consts.rs b/src/test/rustdoc/assoc-consts.rs index cbb2a00214a..9ace8714918 100644 --- a/src/test/rustdoc/assoc-consts.rs +++ b/src/test/rustdoc/assoc-consts.rs @@ -75,8 +75,8 @@ pub trait Qux { /// Docs for QUX1 in trait. const QUX1: i8; // @has - '//*[@id="associatedconstant.QUX_DEFAULT0"]' 'const QUX_DEFAULT0: u16' - // @has - '//*[@class="docblock"]' "Docs for QUX_DEFAULT0 in trait." - /// Docs for QUX_DEFAULT0 in trait. + // @has - '//*[@class="docblock"]' "Docs for QUX_DEFAULT12 in trait." + /// Docs for QUX_DEFAULT12 in trait. const QUX_DEFAULT0: u16 = 1; // @has - '//*[@id="associatedconstant.QUX_DEFAULT1"]' 'const QUX_DEFAULT1: i16' // @has - '//*[@class="docblock"]' "Docs for QUX_DEFAULT1 in trait." @@ -99,7 +99,7 @@ impl Qux for Bar { /// Docs for QUX1 in impl. const QUX1: i8 = 5; // @has - '//*[@id="associatedconstant.QUX_DEFAULT0"]' 'const QUX_DEFAULT0: u16' - // @has - '//*[@class="docblock"]' "Docs for QUX_DEFAULT0 in trait." + // @has - '//*[@class="docblock hidden"]' "Docs for QUX_DEFAULT12 in trait." const QUX_DEFAULT0: u16 = 6; // @has - '//*[@id="associatedconstant.QUX_DEFAULT1"]' 'const QUX_DEFAULT1: i16' // @has - '//*[@class="docblock"]' "Docs for QUX_DEFAULT1 in impl." |
