@@ -1834,7 +1834,7 @@ void main() async {
1834
1834
1835
1835
group ('Class' , () {
1836
1836
late final List <Class > classes;
1837
- late final Class Apple , B , Cat , Dog , F , Dep , SpecialList ;
1837
+ late final Class Apple , B , Cat , Dog , F , Helper , SpecialList ;
1838
1838
late final Class ExtendingClass , CatString ;
1839
1839
1840
1840
setUpAll (() {
@@ -1844,7 +1844,7 @@ void main() async {
1844
1844
Cat = classes.named ('Cat' );
1845
1845
Dog = classes.named ('Dog' );
1846
1846
F = classes.named ('F' );
1847
- Dep = classes.named ('Deprecated ' );
1847
+ Helper = classes.named ('Helper ' );
1848
1848
SpecialList = fakeLibrary.classes.named ('SpecialList' );
1849
1849
ExtendingClass = twoExportsLib.classes.named ('ExtendingClass' );
1850
1850
CatString = exLibrary.classes.named ('CatString' );
@@ -1879,7 +1879,7 @@ void main() async {
1879
1879
});
1880
1880
1881
1881
test ('correctly finds all the classes' , () {
1882
- expect (classes, hasLength (34 ));
1882
+ expect (classes, hasLength (33 ));
1883
1883
});
1884
1884
1885
1885
test ('abstract' , () {
@@ -1982,10 +1982,9 @@ void main() async {
1982
1982
});
1983
1983
1984
1984
test ('exported class should have hrefs from the current library' , () {
1985
- expect (
1986
- Dep .href, equals ('${htmlBasePlaceholder }ex/Deprecated-class.html' ));
1987
- expect (Dep .instanceMethods.named ('toString' ).href,
1988
- equals ('${htmlBasePlaceholder }ex/Deprecated/toString.html' ));
1985
+ expect (Helper .href, equals ('${htmlBasePlaceholder }ex/Helper-class.html' ));
1986
+ expect (Helper .instanceMethods.named ('toString' ).href,
1987
+ equals ('${htmlBasePlaceholder }ex/Helper/toString.html' ));
1989
1988
});
1990
1989
1991
1990
test ('F has a single instance method' , () {
0 commit comments