@@ -195,7 +195,7 @@ void main() {
195195 // android:name="flutterEmbedding" android:value="2" />.
196196
197197 project.checkForDeprecation (deprecationBehavior: DeprecationBehavior .ignore);
198- expect (testLogger.statusText, contains ('https://flutter.dev/go/android-project-migration ' ));
198+ expect (testLogger.statusText, contains ('https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects ' ));
199199 });
200200 _testInMemory ('Android project not on v2 embedding exits' , () async {
201201 final FlutterProject project = await someProject ();
@@ -207,7 +207,7 @@ void main() {
207207 Future <dynamic >.sync (() => project.checkForDeprecation (deprecationBehavior: DeprecationBehavior .exit)),
208208 contains ('Build failed due to use of deprecated Android v1 embedding.' )
209209 );
210- expect (testLogger.statusText, contains ('https://flutter.dev/go/android-project-migration ' ));
210+ expect (testLogger.statusText, contains ('https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects ' ));
211211 expect (testLogger.statusText, contains ('No `<meta-data android:name="flutterEmbedding" android:value="2"/>` in ' ));
212212 });
213213 _testInMemory ('Project not on v2 embedding does not warn if deprecation status is irrelevant' , () async {
@@ -226,21 +226,21 @@ void main() {
226226 // android:name="flutterEmbedding" android:value="2" />.
227227
228228 project.checkForDeprecation (deprecationBehavior: DeprecationBehavior .ignore);
229- expect (testLogger.statusText, contains ('https://flutter.dev/go/android-project-migration ' ));
229+ expect (testLogger.statusText, contains ('https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects ' ));
230230 });
231231 _testInMemory ('Android plugin project does not throw v1 embedding deprecation warning' , () async {
232232 final FlutterProject project = await aPluginProject ();
233233
234234 project.checkForDeprecation (deprecationBehavior: DeprecationBehavior .exit);
235- expect (testLogger.statusText, isNot (contains ('https://flutter.dev/go/android-project-migration ' )));
235+ expect (testLogger.statusText, isNot (contains ('https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects ' )));
236236 expect (testLogger.statusText, isNot (contains ('No `<meta-data android:name="flutterEmbedding" android:value="2"/>` in ' )));
237237 });
238238 _testInMemory ('Android plugin without example app does not show a warning' , () async {
239239 final FlutterProject project = await aPluginProject ();
240240 project.example.directory.deleteSync ();
241241
242242 await project.regeneratePlatformSpecificTooling ();
243- expect (testLogger.statusText, isNot (contains ('https://flutter.dev/go/android-project-migration ' )));
243+ expect (testLogger.statusText, isNot (contains ('https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects ' )));
244244 });
245245 _testInMemory ('updates local properties for Android' , () async {
246246 final FlutterProject project = await someProject ();
0 commit comments