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
e8ac331d
Commit
e8ac331d
authored
May 19, 2017
by
Todd Volkert
Committed by
GitHub
May 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change devfs_test to use IPv6 (#10194)
parent
d94943a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
devfs_test.dart
packages/flutter_tools/test/devfs_test.dart
+2
-2
No files found.
packages/flutter_tools/test/devfs_test.dart
View file @
e8ac331d
...
...
@@ -359,8 +359,8 @@ class MockVMService extends BasicMock implements VMService {
VM
get
vm
=>
_vm
;
Future
<
Null
>
setUp
()
async
{
_server
=
await
HttpServer
.
bind
(
InternetAddress
.
LOOPBACK_IP_V
4
,
0
);
_httpAddress
=
Uri
.
parse
(
'http://
127.0.0.1
:
${_server.port}
'
);
_server
=
await
HttpServer
.
bind
(
InternetAddress
.
LOOPBACK_IP_V
6
,
0
);
_httpAddress
=
Uri
.
parse
(
'http://
[::1]
:
${_server.port}
'
);
_server
.
listen
((
HttpRequest
request
)
{
final
String
fsName
=
request
.
headers
.
value
(
'dev_fs_name'
);
final
String
devicePath
=
UTF8
.
decode
(
BASE64
.
decode
(
request
.
headers
.
value
(
'dev_fs_uri_b64'
)));
...
...
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