Skip to content

Commit

Permalink
Rephrase null safety mode (#74306)
Browse files Browse the repository at this point in the history
  • Loading branch information
mit-mit committed Jan 20, 2021
1 parent 118f612 commit 914c9aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/flutter_tools/lib/src/commands/build.dart
Expand Up @@ -67,7 +67,7 @@ abstract class BuildSubCommand extends FlutterCommand {
globals.printStatus('💪 Building with sound null safety 💪', emphasis: true);
} else {
globals.printStatus(
'Building with unsound null safety',
'Building without sound null safety',
emphasis: true,
);
globals.printStatus(
Expand Down
Expand Up @@ -67,7 +67,7 @@ void main() {
);

FakeBuildSubCommand().test(unsound);
expect(testLogger.statusText, contains('Building with unsound null safety'));
expect(testLogger.statusText, contains('Building without sound null safety'));

testLogger.clear();
FakeBuildSubCommand().test(sound);
Expand Down

0 comments on commit 914c9aa

Please sign in to comment.