Unverified Commit 914c9aa3 authored by Michael Thomsen's avatar Michael Thomsen Committed by GitHub

Rephrase null safety mode (#74306)

parent 118f6123
......@@ -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(
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment