From f4a6b226a2aba366740613c349c8e1a50b8627c8 Mon Sep 17 00:00:00 2001 From: Yulian Kuncheff Date: Mon, 25 Sep 2023 13:51:01 -0700 Subject: [PATCH] Fix test --- test/uuid_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/uuid_test.dart b/test/uuid_test.dart index a7d3d97..a55b167 100644 --- a/test/uuid_test.dart +++ b/test/uuid_test.dart @@ -473,7 +473,7 @@ void main() { }); test('Pass invalid Uuid to constructor', () { - const invalidUUID = 'For sure not a valid UUID'; + const invalidUUID = 'for sure not a valid uuid'; expect(Uuid.isValidUUID(fromString: invalidUUID), false); expect(() => UuidValue.withValidation(invalidUUID), throwsA(isA()));