diff --git a/phpunit.xml.dist b/phpunit.xml.dist index c60d461..99d7d66 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,6 +1,6 @@ ', (new Some('car'))->and(new Some(true))); $option = (new Some(2))->andThen(static fn(int $number): Some => new Some((string) ($number ** 2))); -assertType('Nexus\Option\Some', $option); -assertType('numeric-string', $option->unwrap()); +assertType('Nexus\Option\Some', $option); +assertType('numeric-string&uppercase-string', $option->unwrap()); assertType('Nexus\Option\Some', (new Some(2))->or(new None())); assertType('Nexus\Option\Some', (new Some(2))->or(new Some('car')));