Commit 5d532e42 authored by Alexandre Ardhuin's avatar Alexandre Ardhuin Committed by Flutter GitHub Bot

fix R8 error message (#49341)

parent 57e81894
......@@ -278,7 +278,7 @@ void main() {
environment: anyNamed('environment'),
)).thenAnswer((_) {
const String r8StdoutWarning =
'Execution failed for task \':app:transformClassesAndResourcesWithR8ForStageInternal\'.'
"Execution failed for task ':app:transformClassesAndResourcesWithR8ForStageInternal'.\n"
'> com.android.tools.r8.CompilationFailedException: Compilation failed to complete';
return Future<Process>.value(
createMockProcess(
......
......@@ -266,7 +266,7 @@ void main() {
environment: anyNamed('environment'),
)).thenAnswer((_) {
const String r8StdoutWarning =
'Execution failed for task \':app:transformClassesAndResourcesWithR8ForStageInternal\'.'
"Execution failed for task ':app:transformClassesAndResourcesWithR8ForStageInternal'.\n"
'> com.android.tools.r8.CompilationFailedException: Compilation failed to complete';
return Future<Process>.value(
createMockProcess(
......
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