From 19f613ce93c3e56666d1d5418564288591209482 Mon Sep 17 00:00:00 2001 From: Jonas Franz Date: Thu, 17 Feb 2022 19:00:39 +0100 Subject: [PATCH] Fix linting --- test/efficiency_bechmark_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/efficiency_bechmark_test.dart b/test/efficiency_bechmark_test.dart index 8c268aa..38357e3 100644 --- a/test/efficiency_bechmark_test.dart +++ b/test/efficiency_bechmark_test.dart @@ -30,14 +30,14 @@ void main() { await tester.pumpAndSettle(); // toggle sign in button two times - final switchButton = find.byKey(Key('user_switch')); + final switchButton = find.byKey(const Key('user_switch')); await tester.tap(switchButton); await tester.pumpAndSettle(); await tester.tap(switchButton); await tester.pumpAndSettle(); // go to cart - final cartButton = find.byKey(Key('cart_button')); + final cartButton = find.byKey(const Key('cart_button')); await tester.tap(cartButton); await tester.pumpAndSettle(); final header = find.text('Warenkorb');