From 61a196d634cfc15a9b80e6e2a6332a61efbb34fc Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Mon, 6 Jul 2026 13:35:13 +0200 Subject: [PATCH] test(flutter): Fix OnProcessSpan calls missing Hint PR #3847 added a required hint parameter to OnProcessSpan but missed the five call sites in thread_info_integration_test.dart, which landed in parallel. This breaks compilation of the flutter test suite and the analyze gate on v10-branch, failing CI for every PR based on it. Co-Authored-By: Claude Fable 5 --- .../integrations/thread_info_integration_test.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/flutter/test/integrations/thread_info_integration_test.dart b/packages/flutter/test/integrations/thread_info_integration_test.dart index 8ff1482746..231a88fda5 100644 --- a/packages/flutter/test/integrations/thread_info_integration_test.dart +++ b/packages/flutter/test/integrations/thread_info_integration_test.dart @@ -425,7 +425,7 @@ void main() { ); await fixture.options.lifecycleRegistry.dispatchCallback( - OnProcessSpan(span), + OnProcessSpan(span, Hint()), ); expect( @@ -454,7 +454,7 @@ void main() { ); await fixture.options.lifecycleRegistry.dispatchCallback( - OnProcessSpan(span), + OnProcessSpan(span, Hint()), ); expect( @@ -481,7 +481,7 @@ void main() { ); await fixture.options.lifecycleRegistry.dispatchCallback( - OnProcessSpan(span), + OnProcessSpan(span, Hint()), ); expect( @@ -506,7 +506,7 @@ void main() { ); await fixture.options.lifecycleRegistry.dispatchCallback( - OnProcessSpan(span), + OnProcessSpan(span, Hint()), ); // sync == false is not synchronous, so blocked_main_thread is not set. @@ -532,7 +532,7 @@ void main() { span.setAttribute('sync', SentryAttribute.bool(true)); await fixture.options.lifecycleRegistry.dispatchCallback( - OnProcessSpan(span), + OnProcessSpan(span, Hint()), ); expect(