Skip to content

Commit fecb9f6

Browse files
committed
MQE-683: [Deprecation] Only use more nested assertion syntax
- Bugfix for empty value
1 parent 173f9b3 commit fecb9f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Test/Objects/ActionObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public function trimAssertionAttributes()
323323
$this->actionAttributes[$prefix . ucfirst(ActionObject::ASSERTION_TYPE_ATTRIBUTE)] =
324324
$subAttributes[ActionObject::ASSERTION_TYPE_ATTRIBUTE] ?? "NO_TYPE";
325325
$this->actionAttributes[$prefix] =
326-
$subAttributes[ActionObject::ASSERTION_VALUE_ATTRIBUTE];
326+
$subAttributes[ActionObject::ASSERTION_VALUE_ATTRIBUTE] ?? "";
327327
unset($this->actionAttributes[$key]);
328328
}
329329
}

0 commit comments

Comments
 (0)