Skip to content

Commit bf268b9

Browse files
committed
Fix entity registration.
1 parent 083fe8e commit bf268b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Codeception/Module/DrupalEntity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function registerTestEntity($type, $id) {
122122
catch (\Exception $e) {
123123
$this->fail('Invalid entity type specified: ' . $type);
124124
}
125-
$this->entities[$type] = $id;
125+
$this->entities[$type][] = $id;
126126
}
127127

128128
/**

0 commit comments

Comments
 (0)