Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
daegalus committed Sep 25, 2023
1 parent 897561e commit f4a6b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/uuid_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<FormatException>()));
Expand Down

0 comments on commit f4a6b22

Please sign in to comment.