@@ -1806,12 +1806,11 @@ void main() {
1806
1806
fakeVmServiceHost = FakeVmServiceHost (requests: < VmServiceExpectation > []);
1807
1807
final FakeDevice device = FakeDevice ()
1808
1808
..dds = DartDevelopmentService ();
1809
- ddsLauncherCallback = (Uri uri, {bool enableAuthCodes, bool ipv6, Uri serviceUri, List < String > cachedUserTags }) {
1809
+ ddsLauncherCallback = (Uri uri, {bool enableAuthCodes, bool ipv6, Uri serviceUri}) {
1810
1810
expect (uri, Uri (scheme: 'foo' , host: 'bar' ));
1811
1811
expect (enableAuthCodes, isTrue);
1812
1812
expect (ipv6, isFalse);
1813
1813
expect (serviceUri, Uri (scheme: 'http' , host: '127.0.0.1' , port: 0 ));
1814
- expect (cachedUserTags, < String > ['AppStartUp' ]);
1815
1814
throw FakeDartDevelopmentServiceException (message:
1816
1815
'Existing VM service clients prevent DDS from taking control.' ,
1817
1816
);
@@ -1854,12 +1853,11 @@ void main() {
1854
1853
final FakeDevice device = FakeDevice ()
1855
1854
..dds = DartDevelopmentService ();
1856
1855
final Completer <void >done = Completer <void >();
1857
- ddsLauncherCallback = (Uri uri, {bool enableAuthCodes, bool ipv6, Uri serviceUri, List < String > cachedUserTags }) async {
1856
+ ddsLauncherCallback = (Uri uri, {bool enableAuthCodes, bool ipv6, Uri serviceUri}) async {
1858
1857
expect (uri, Uri (scheme: 'foo' , host: 'bar' ));
1859
1858
expect (enableAuthCodes, isFalse);
1860
1859
expect (ipv6, isTrue);
1861
1860
expect (serviceUri, Uri (scheme: 'http' , host: '::1' , port: 0 ));
1862
- expect (cachedUserTags, < String > ['AppStartUp' ]);
1863
1861
done.complete ();
1864
1862
return null ;
1865
1863
};
@@ -1886,12 +1884,11 @@ void main() {
1886
1884
// See https://github.com/flutter/flutter/issues/72385 for context.
1887
1885
final FakeDevice device = FakeDevice ()
1888
1886
..dds = DartDevelopmentService ();
1889
- ddsLauncherCallback = (Uri uri, {bool enableAuthCodes, bool ipv6, Uri serviceUri, List < String > cachedUserTags }) {
1887
+ ddsLauncherCallback = (Uri uri, {bool enableAuthCodes, bool ipv6, Uri serviceUri}) {
1890
1888
expect (uri, Uri (scheme: 'foo' , host: 'bar' ));
1891
1889
expect (enableAuthCodes, isTrue);
1892
1890
expect (ipv6, isFalse);
1893
1891
expect (serviceUri, Uri (scheme: 'http' , host: '127.0.0.1' , port: 0 ));
1894
- expect (cachedUserTags, < String > ['AppStartUp' ]);
1895
1892
throw FakeDartDevelopmentServiceException (message: 'No URI' );
1896
1893
};
1897
1894
final TestFlutterDevice flutterDevice = TestFlutterDevice (
0 commit comments