From be4ce36a7cdfdbf9e4e08b58d8089264ff1d2df6 Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Sat, 15 Jun 2024 21:37:47 +0200 Subject: [PATCH] fixup! fix(property.dart): handle additional fields correctly --- test/core/operation_type_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/operation_type_test.dart b/test/core/operation_type_test.dart index 253e831b..f19ee171 100644 --- a/test/core/operation_type_test.dart +++ b/test/core/operation_type_test.dart @@ -10,7 +10,7 @@ import "package:test/test.dart"; void main() { group("OperationType should indicate the correct default op values for", () { test("properties", () { - const regularProperty = Property(forms: []); + const regularProperty = Property(forms: [], dataSchema: DataSchema()); final regularPropertyOpValues = OperationType.defaultOpValues(regularProperty);