Unverified Commit 4517d16b authored by Jia Hao's avatar Jia Hao Committed by GitHub

[flutter_tools] Fix incorrect todo (#94597)

parent 885a1482
...@@ -415,7 +415,7 @@ class TestCommand extends FlutterCommand with DeviceBasedDevelopmentArtifacts { ...@@ -415,7 +415,7 @@ class TestCommand extends FlutterCommand with DeviceBasedDevelopmentArtifacts {
); );
} }
if (integrationTestDevice.platformType == PlatformType.web) { if (integrationTestDevice.platformType == PlatformType.web) {
// TODO(jiahaog): Support web. https://github.com/flutter/flutter/pull/74236 // TODO(jiahaog): Support web. https://github.com/flutter/flutter/issues/66264
throwToolExit('Web devices are not supported for integration tests yet.'); throwToolExit('Web devices are not supported for integration tests yet.');
} }
......
...@@ -561,7 +561,7 @@ dev_dependencies: ...@@ -561,7 +561,7 @@ dev_dependencies:
DeviceManager: () => _FakeDeviceManager(<Device>[]), DeviceManager: () => _FakeDeviceManager(<Device>[]),
}); });
// TODO(jiahaog): Remove this when web is supported. https://github.com/flutter/flutter/pull/74236 // TODO(jiahaog): Remove this when web is supported. https://github.com/flutter/flutter/issues/66264
testUsingContext('Integration tests when only web devices are connected', () async { testUsingContext('Integration tests when only web devices are connected', () async {
final FakeFlutterTestRunner testRunner = FakeFlutterTestRunner(0); final FakeFlutterTestRunner testRunner = FakeFlutterTestRunner(0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment