Skip to content

Commit b0f2721

Browse files
committed
Remove redundant tests
Issues in those parts will likely be caught by other parts of the test suite.
1 parent 4f6698f commit b0f2721

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/rustdoc/issue-118180-empty-tuple-struct.rs

-10
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,8 @@
22
pub enum Enum {
33
// @has - '//*[@id="variant.Empty"]//h3' 'Empty()'
44
Empty(),
5-
// @has - '//*[@id="variant.Hidden"]//h3' 'Hidden(/* private fields */)'
6-
Hidden(#[doc(hidden)] u8),
75
}
86

97
// @has issue_118180_empty_tuple_struct/struct.Empty.html
108
// @has - '//pre/code' 'Empty()'
119
pub struct Empty();
12-
13-
// @has issue_118180_empty_tuple_struct/struct.Hidden.html
14-
// @has - '//pre/code' 'Hidden(/* private fields */)'
15-
pub struct Hidden(#[doc(hidden)] pub u8);
16-
17-
// @has issue_118180_empty_tuple_struct/struct.Private.html
18-
// @has - '//pre/code' 'Private(/* private fields */)'
19-
pub struct Private(());

0 commit comments

Comments
 (0)