Skip to content

Commit

Permalink
Remove period from exception message
Browse files Browse the repository at this point in the history
Co-authored-by: Jeremy Mikola <jmikola@gmail.com>
  • Loading branch information
GromNaN and jmikola authored Oct 16, 2024
1 parent ce21648 commit b759800
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ public function testEmptySearchIndexDefinition(): void
$cm = new ClassMetadata('stdClass');

$this->expectException(MappingException::class);
$this->expectExceptionMessage('stdClass search index "default" must be dynamic or specify a field mapping.');
$this->expectExceptionMessage('stdClass search index "default" must be dynamic or specify a field mapping');
$cm->addSearchIndex(['mappings' => []]);
}
}
Expand Down

0 comments on commit b759800

Please sign in to comment.