From a316d33abd580b02de79de5374c34faa20638bc8 Mon Sep 17 00:00:00 2001 From: tamslo Date: Tue, 10 Dec 2024 11:58:24 +0100 Subject: [PATCH] =?UTF-8?q?fix(app):=20adapt=20FAQ=20test=20=F0=9F=99=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/integration_test/faq_test.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/integration_test/faq_test.dart b/app/integration_test/faq_test.dart index 3b20dd5e..3fcb5d14 100644 --- a/app/integration_test/faq_test.dart +++ b/app/integration_test/faq_test.dart @@ -38,6 +38,8 @@ void main() { await tester.pumpWidget(faqWidget); await tester.pumpAndSettle(); + final faqContent = getFaqContent(); + final expectedNumberOfQuestions = faqContent.fold( 0, (number, topic) => number + topic.questions.length );