We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
expect
FakeCommand
1 parent ff248d2 commit a27cb14Copy full SHA for a27cb14
packages/flutter_tools/test/src/fake_process_manager.dart
@@ -111,13 +111,13 @@ class FakeCommand {
111
final List<dynamic> matchers = this.command.map((Pattern x) => x is String ? x : matches(x)).toList();
112
expect(command, matchers);
113
if (this.workingDirectory != null) {
114
- expect(this.workingDirectory, workingDirectory);
+ expect(workingDirectory, this.workingDirectory);
115
}
116
if (this.environment != null) {
117
- expect(this.environment, environment);
+ expect(environment, this.environment);
118
119
if (this.encoding != null) {
120
- expect(this.encoding, encoding);
+ expect(encoding, this.encoding);
121
122
123
0 commit comments