From 57ca00dee20c17895359cb839668250c07d5af57 Mon Sep 17 00:00:00 2001 From: CatHood0 Date: Fri, 5 Jul 2024 21:11:24 -0400 Subject: [PATCH] chore: dart fixes --- test/utils/delta_x_test.dart | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/test/utils/delta_x_test.dart b/test/utils/delta_x_test.dart index cccb9612..dc0bfa1d 100644 --- a/test/utils/delta_x_test.dart +++ b/test/utils/delta_x_test.dart @@ -3,9 +3,11 @@ import 'package:flutter_quill/src/models/documents/delta_x.dart'; import 'package:test/test.dart'; void main() { - const htmlWithEmp = '

This is a normal sentence, and this section has greater emphasis.

'; + const htmlWithEmp = + '

This is a normal sentence, and this section has greater emphasis.

'; - const htmlWithUnderline = '

This is a normal sentence, and this section has greater underline'; + const htmlWithUnderline = + '

This is a normal sentence, and this section has greater underline'; const htmlWithIframeVideo = ''; @@ -17,13 +19,15 @@ void main() { 'fdsfsd
'; final expectedDeltaEmp = Delta.fromOperations([ - Operation.insert('This is a normal sentence, and this section has greater emp'), + Operation.insert( + 'This is a normal sentence, and this section has greater emp'), Operation.insert('hasis.', {'italic': true}), Operation.insert('\n'), ]); final expectedDeltaUnderline = Delta.fromOperations([ - Operation.insert('This is a normal sentence, and this section has greater '), + Operation.insert( + 'This is a normal sentence, and this section has greater '), Operation.insert('underline', {'underline': true}), Operation.insert('\n'), ]);