Fix htmldocck naming

After renaming the structs and enums the htmldocck strings still
contained the old names. This lead to test failure.

These htmldocck tests have been updated to use the proper names of the
rust structs and traits.
This commit is contained in:
Christian Duerr 2017-11-30 21:43:21 +01:00
parent 1df13c057a
commit 5f47c7f531
No known key found for this signature in database
GPG Key ID: 85CDAE3C164BA7B4

View File

@ -10,10 +10,10 @@
pub trait PublicTrait<T> {}
// @has issue_46380_2/struct.Public.html
// @has issue_46380_2/struct.PublicStruct.html
pub struct PublicStruct;
// @!has - '//*[@class="impl"]' 'impl Add<Private> for Public'
// @!has - '//*[@class="impl"]' 'impl PublicTrait<PrivateStruct> for PublicStruct'
impl PublicTrait<PrivateStruct> for PublicStruct {}
struct PrivateStruct;