Skip to content

Commit

Permalink
fix discarding custom tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Sep 13, 2023
1 parent 0b396f6 commit cbf3464
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## 5.5.1 - 2023-09-13

### Fixed

- Custom tags loaded from PHPUnit groups were discarded

## 5.5.0 - 2023-09-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/PHPUnit/Load.php
Expand Up @@ -68,7 +68,7 @@ public function __invoke()
$this->parseTag,
$groups,
),
static fn($tag) => $tag instanceof Tag,
static fn($tag) => $tag instanceof \UnitEnum,
));

if (isset($attributes[0])) {
Expand Down

0 comments on commit cbf3464

Please sign in to comment.