From fc1ad7c0ee2c1ee349816bab81de897c2719619d Mon Sep 17 00:00:00 2001 From: Elian Ortega <54898038+elianortega@users.noreply.github.com> Date: Wed, 19 Jul 2023 12:51:57 -0600 Subject: [PATCH] Update examples/form_flow/packages/formz_inputs/test/name_test.dart Co-authored-by: Marcos Sevilla <31174242+marcossevilla@users.noreply.github.com> --- examples/form_flow/packages/formz_inputs/test/name_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/form_flow/packages/formz_inputs/test/name_test.dart b/examples/form_flow/packages/formz_inputs/test/name_test.dart index 10792dc..a828357 100644 --- a/examples/form_flow/packages/formz_inputs/test/name_test.dart +++ b/examples/form_flow/packages/formz_inputs/test/name_test.dart @@ -10,7 +10,7 @@ void main() { test('pure creates correct instance', () { final name = NameFormInput.pure(); expect(name.value, ''); - expect(name.isPure, true); + expect(name.isPure, isTrue); }); test('dirty creates correct instance', () {