File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ branches:
7
7
- master
8
8
9
9
install :
10
- - ps : wget https://storage.googleapis.com/dart-archive/channels/dev/raw /latest/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
10
+ - ps : wget https://storage.googleapis.com/dart-archive/channels/dev/release /latest/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
11
11
- cmd : echo "Unzipping dart-sdk..."
12
12
- cmd : 7z x dart-sdk.zip -o"C:\tools" -y > nul
13
13
- cmd : del dart-sdk.zip
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ void main() {
325
325
326
326
test ('sdk description' , () {
327
327
expect (sdkAsPackageGraph.defaultPackage.documentation,
328
- startsWith ('Welcome to the Dart API reference doc ' ));
328
+ startsWith ('Welcome' ));
329
329
});
330
330
});
331
331
Original file line number Diff line number Diff line change @@ -111,8 +111,7 @@ void main() {
111
111
112
112
test ('has a readme' , () {
113
113
expect (p.getReadmeContents (), isNotNull);
114
- expect (p.getReadmeContents ().contents,
115
- startsWith ('Welcome to the Dart API reference documentation' ));
114
+ expect (p.getReadmeContents ().contents, startsWith ('Welcome' ));
116
115
});
117
116
118
117
test ('does not have a license' , () {
You can’t perform that action at this time.
0 commit comments