Skip to content

Commit

Permalink
merge labels in annotation manager (via #51)
Browse files Browse the repository at this point in the history
  • Loading branch information
baev authored Feb 5, 2020
1 parent 2c62a70 commit 243c9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Yandex/Allure/Adapter/Annotation/AnnotationManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function updateTestCaseEvent(TestCaseStartedEvent $event)
}

if ($this->areLabelsPresent()) {
$event->setLabels($this->getLabels());
$event->setLabels(array_merge($event->getLabels(), $this->getLabels()));
}

if ($this->areParametersPresent()) {
Expand Down

0 comments on commit 243c9a2

Please sign in to comment.