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
c22b7f69
Unverified
Commit
c22b7f69
authored
Aug 04, 2022
by
Michael Goderbauer
Committed by
GitHub
Aug 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add avoid_redundant_argument_values ignores back (#108984)
parent
74aef9ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
28 deletions
+28
-28
custom_devices_test.dart
...ols/test/commands.shard/hermetic/custom_devices_test.dart
+6
-6
devfs_web_test.dart
.../flutter_tools/test/general.shard/web/devfs_web_test.dart
+22
-22
No files found.
packages/flutter_tools/test/commands.shard/hermetic/custom_devices_test.dart
View file @
c22b7f69
...
...
@@ -547,7 +547,7 @@ void main() {
'-w'
,
'1'
,
'testhostname'
,
],
postBuildCommand:
null
,
postBuildCommand:
null
,
// ignore: avoid_redundant_argument_values
installCommand:
const
<
String
>[
'scp'
,
'-r'
,
...
...
@@ -637,7 +637,7 @@ void main() {
'-w'
,
'1'
,
'192.168.178.1'
,
],
postBuildCommand:
null
,
postBuildCommand:
null
,
// ignore: avoid_redundant_argument_values
installCommand:
const
<
String
>[
'scp'
,
'-r'
,
...
...
@@ -727,7 +727,7 @@ void main() {
'-w'
,
'1'
,
'::1'
,
],
postBuildCommand:
null
,
postBuildCommand:
null
,
// ignore: avoid_redundant_argument_values
installCommand:
const
<
String
>[
'scp'
,
'-r'
,
...
...
@@ -821,7 +821,7 @@ void main() {
'-w'
,
'1'
,
'testhostname'
,
],
postBuildCommand:
null
,
postBuildCommand:
null
,
// ignore: avoid_redundant_argument_values
installCommand:
<
String
>[
'scp'
,
'-r'
,
...
...
@@ -901,7 +901,7 @@ void main() {
'-w'
,
'1'
,
'testhostname'
,
],
postBuildCommand:
null
,
postBuildCommand:
null
,
// ignore: avoid_redundant_argument_values
installCommand:
const
<
String
>[
'scp'
,
'-r'
,
...
...
@@ -1226,7 +1226,7 @@ void main() {
'testhostname'
,
],
pingSuccessRegex:
RegExp
(
r'[<=]\d+ms'
),
postBuildCommand:
null
,
postBuildCommand:
null
,
// ignore: avoid_redundant_argument_values
installCommand:
const
<
String
>[
'scp'
,
'-r'
,
...
...
packages/flutter_tools/test/general.shard/web/devfs_web_test.dart
View file @
c22b7f69
...
...
@@ -68,10 +68,10 @@ void main() {
);
releaseAssetServer
=
ReleaseAssetServer
(
globals
.
fs
.
file
(
'main.dart'
).
uri
,
fileSystem:
null
,
flutterRoot:
null
,
platform:
null
,
webBuildDirectory:
null
,
fileSystem:
null
,
// ignore: avoid_redundant_argument_values
flutterRoot:
null
,
// ignore: avoid_redundant_argument_values
platform:
null
,
// ignore: avoid_redundant_argument_values
webBuildDirectory:
null
,
// ignore: avoid_redundant_argument_values
basePath:
null
,
);
},
overrides:
<
Type
,
Generator
>{
...
...
@@ -662,7 +662,7 @@ void main() {
hostname:
'localhost'
,
port:
0
,
packagesFilePath:
'.packages'
,
urlTunneller:
null
,
urlTunneller:
null
,
// ignore: avoid_redundant_argument_values
useSseForDebugProxy:
true
,
useSseForDebugBackend:
true
,
useSseForInjectedClient:
true
,
...
...
@@ -678,8 +678,8 @@ void main() {
enableDds:
false
,
entrypoint:
Uri
.
base
,
testMode:
true
,
expressionCompiler:
null
,
chromiumLauncher:
null
,
expressionCompiler:
null
,
// ignore: avoid_redundant_argument_values
chromiumLauncher:
null
,
// ignore: avoid_redundant_argument_values
nullSafetyMode:
NullSafetyMode
.
unsound
,
);
webDevFS
.
requireJS
.
createSync
(
recursive:
true
);
...
...
@@ -775,7 +775,7 @@ void main() {
hostname:
'localhost'
,
port:
0
,
packagesFilePath:
'.packages'
,
urlTunneller:
null
,
urlTunneller:
null
,
// ignore: avoid_redundant_argument_values
useSseForDebugProxy:
true
,
useSseForDebugBackend:
true
,
useSseForInjectedClient:
true
,
...
...
@@ -790,8 +790,8 @@ void main() {
enableDds:
false
,
entrypoint:
Uri
.
base
,
testMode:
true
,
expressionCompiler:
null
,
chromiumLauncher:
null
,
expressionCompiler:
null
,
// ignore: avoid_redundant_argument_values
chromiumLauncher:
null
,
// ignore: avoid_redundant_argument_values
nullSafetyMode:
NullSafetyMode
.
sound
,
);
webDevFS
.
requireJS
.
createSync
(
recursive:
true
);
...
...
@@ -881,7 +881,7 @@ void main() {
hostname:
'any'
,
port:
0
,
packagesFilePath:
'.packages'
,
urlTunneller:
null
,
urlTunneller:
null
,
// ignore: avoid_redundant_argument_values
useSseForDebugProxy:
true
,
useSseForDebugBackend:
true
,
useSseForInjectedClient:
true
,
...
...
@@ -890,8 +890,8 @@ void main() {
enableDds:
false
,
entrypoint:
Uri
.
base
,
testMode:
true
,
expressionCompiler:
null
,
chromiumLauncher:
null
,
expressionCompiler:
null
,
// ignore: avoid_redundant_argument_values
chromiumLauncher:
null
,
// ignore: avoid_redundant_argument_values
nullAssertions:
true
,
nativeNullAssertions:
true
,
nullSafetyMode:
NullSafetyMode
.
sound
,
...
...
@@ -916,7 +916,7 @@ void main() {
hostname:
'localhost'
,
port:
0
,
packagesFilePath:
'.packages'
,
urlTunneller:
null
,
urlTunneller:
null
,
// ignore: avoid_redundant_argument_values
useSseForDebugProxy:
true
,
useSseForDebugBackend:
true
,
useSseForInjectedClient:
true
,
...
...
@@ -934,8 +934,8 @@ void main() {
enableDds:
false
,
entrypoint:
Uri
.
base
,
testMode:
true
,
expressionCompiler:
null
,
chromiumLauncher:
null
,
expressionCompiler:
null
,
// ignore: avoid_redundant_argument_values
chromiumLauncher:
null
,
// ignore: avoid_redundant_argument_values
nullSafetyMode:
NullSafetyMode
.
sound
,
);
webDevFS
.
requireJS
.
createSync
(
recursive:
true
);
...
...
@@ -959,7 +959,7 @@ void main() {
hostname:
'localhost'
,
port:
0
,
packagesFilePath:
'.packages'
,
urlTunneller:
null
,
urlTunneller:
null
,
// ignore: avoid_redundant_argument_values
useSseForDebugProxy:
true
,
useSseForDebugBackend:
true
,
useSseForInjectedClient:
true
,
...
...
@@ -977,8 +977,8 @@ void main() {
enableDds:
false
,
entrypoint:
Uri
.
base
,
testMode:
true
,
expressionCompiler:
null
,
chromiumLauncher:
null
,
expressionCompiler:
null
,
// ignore: avoid_redundant_argument_values
chromiumLauncher:
null
,
// ignore: avoid_redundant_argument_values
nullSafetyMode:
NullSafetyMode
.
sound
,
);
webDevFS
.
requireJS
.
createSync
(
recursive:
true
);
...
...
@@ -1069,7 +1069,7 @@ void main() {
hostname:
'localhost'
,
port:
0
,
packagesFilePath:
'.packages'
,
urlTunneller:
null
,
urlTunneller:
null
,
// ignore: avoid_redundant_argument_values
useSseForDebugProxy:
true
,
useSseForDebugBackend:
true
,
useSseForInjectedClient:
true
,
...
...
@@ -1080,8 +1080,8 @@ void main() {
enableDds:
false
,
entrypoint:
Uri
.
base
,
testMode:
true
,
expressionCompiler:
null
,
chromiumLauncher:
null
,
expressionCompiler:
null
,
// ignore: avoid_redundant_argument_values
chromiumLauncher:
null
,
// ignore: avoid_redundant_argument_values
nullSafetyMode:
NullSafetyMode
.
unsound
,
);
webDevFS
.
requireJS
.
createSync
(
recursive:
true
);
...
...
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