Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
296eeb59
Unverified
Commit
296eeb59
authored
Nov 05, 2021
by
Jenn Magder
Committed by
GitHub
Nov 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate custom_device to null safety (#92955)
parent
f4d1bfed
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
93 additions
and
81 deletions
+93
-81
custom_device.dart
...s/flutter_tools/lib/src/custom_devices/custom_device.dart
+91
-79
custom_device_test.dart
...test/general.shard/custom_devices/custom_device_test.dart
+2
-2
No files found.
packages/flutter_tools/lib/src/custom_devices/custom_device.dart
View file @
296eeb59
This diff is collapsed.
Click to expand it.
packages/flutter_tools/test/general.shard/custom_devices/custom_device_test.dart
View file @
296eeb59
...
...
@@ -391,7 +391,7 @@ void main() {
processManager:
processManager
,
);
final
LaunchResult
launchResult
=
await
appSession
.
start
();
final
LaunchResult
launchResult
=
await
appSession
.
start
(
debuggingOptions:
DebuggingOptions
.
enabled
(
BuildInfo
.
debug
)
);
expect
(
launchResult
.
started
,
true
);
expect
(
launchResult
.
observatoryUri
,
Uri
.
parse
(
'http://127.0.0.1:12345/abcd/'
));
...
...
@@ -428,7 +428,7 @@ void main() {
processManager:
processManager
);
final
LaunchResult
launchResult
=
await
appSession
.
start
();
final
LaunchResult
launchResult
=
await
appSession
.
start
(
debuggingOptions:
DebuggingOptions
.
enabled
(
BuildInfo
.
debug
)
);
expect
(
launchResult
.
started
,
true
);
expect
(
launchResult
.
observatoryUri
,
Uri
.
parse
(
'http://192.168.178.123:12345/abcd/'
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment