From deba3a5dd5c27506e38261c15d2895f53669e8ce Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Fri, 6 Dec 2024 10:00:54 +0100 Subject: [PATCH] fixup! fix: fix error handling within ThingDiscovery class --- test/core/discovery_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/discovery_test.dart b/test/core/discovery_test.dart index 068a6a1a..c46d94c1 100644 --- a/test/core/discovery_test.dart +++ b/test/core/discovery_test.dart @@ -352,7 +352,7 @@ void main() { (event) { counter++; }, - onError: (error, stackTrace) async {}, + onError: (error) async {}, onDone: () { expect(counter, 0); expect(thingDiscoveryProcess.done, true);