diff --git a/src/Tests/Tests/epv_test_validate_event_names.php b/src/Tests/Tests/epv_test_validate_event_names.php index 0176d0f..869313e 100644 --- a/src/Tests/Tests/epv_test_validate_event_names.php +++ b/src/Tests/Tests/epv_test_validate_event_names.php @@ -43,7 +43,9 @@ public function validateDirectory(array $dirList) } $events = $exporter->get_events(); - $vendor = strtolower(str_replace('/', '.', $this->namespace)); // event names are requierd to be lowercase! + // event names are required to be lowercase + // event names should end with a dot to seperate the vendor.name and the actual event name. + $vendor = strtolower(str_replace('/', '.', $this->namespace)) + '.'; foreach ($events as $event) { @@ -67,6 +69,6 @@ public function validateDirectory(array $dirList) public function testName() { - return "Validate directory structure"; + return "Test event names"; } }