From 43e64d82198bed4fe5a0a7c5f5cd0688a8b3071c Mon Sep 17 00:00:00 2001 From: Richard Shiue <71320345+richardshiue@users.noreply.github.com> Date: Wed, 5 Feb 2025 19:45:21 +0800 Subject: [PATCH] test: fix image integration test (#7323) --- .../desktop/document/document_copy_and_paste_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart b/frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart index aa4f8252d5..c18b42939c 100644 --- a/frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart +++ b/frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart @@ -458,7 +458,7 @@ void main() { }); testWidgets('paste the image url', (tester) async { - const plainText = 'https://appflowy.io/1.jpg'; + const plainText = 'http://example.com/1.jpg'; final image = await rootBundle.load('assets/test/images/sample.jpeg'); final bytes = image.buffer.asUint8List(); await tester.pasteContent(plainText: plainText, image: ('jpeg', bytes),