From b49ac0bb4ebd169ce3fa99b7570247eac1bc84cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Tro=C3=ABng?= Date: Tue, 6 Feb 2024 11:09:10 +0100 Subject: [PATCH] single quotation fix --- integration_test/otp_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test/otp_test.dart b/integration_test/otp_test.dart index b79a9d6e..0b9b8d84 100644 --- a/integration_test/otp_test.dart +++ b/integration_test/otp_test.dart @@ -111,7 +111,7 @@ void main() { await tester.shortWait(); // this writes and saves oath secret - await tester.enterText(find.byKey(secretField), "asdfasdf"); + await tester.enterText(find.byKey(secretField), 'asdfasdf'); await tester.shortWait(); await tester.tap(find.byKey(saveButton).hitTestable()); await tester.shortWait();