From 7f2ea387c6f0810497add9ea1c42dbea8feb8327 Mon Sep 17 00:00:00 2001 From: CatHood0 Date: Thu, 4 Jul 2024 21:30:57 -0400 Subject: [PATCH] fix(test): controller_test doesn't find LineHeightAttribute --- test/widgets/controller_test.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/widgets/controller_test.dart b/test/widgets/controller_test.dart index 4d147024..c914d99a 100644 --- a/test/widgets/controller_test.dart +++ b/test/widgets/controller_test.dart @@ -1,6 +1,7 @@ import 'package:flutter/material.dart'; import 'package:flutter_quill/flutter_quill.dart'; import 'package:flutter_quill/quill_delta.dart'; +import 'package:flutter_quill/src/models/documents/attribute.dart'; import 'package:test/test.dart'; void main() { @@ -372,7 +373,7 @@ void main() { 'blockquote' => Attribute.blockQuote, 'indent' => Attribute.indentL2, 'direction' => Attribute.rtl, - 'line-height' => Attribute.lineHeightNormal, + 'line-height' => LineHeightAttribute.lineHeightNormal, String() => throw UnimplementedError(key) };