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