grammar fixes

This commit is contained in:
Dan Ang
2023-03-20 00:29:19 +01:00
parent 88e047bd27
commit 540c2a56bd
9 changed files with 9 additions and 9 deletions

View File

@ -19,7 +19,7 @@ it('throws exception if dataset does not exist', function () {
it('throws exception if dataset already exist', function () {
DatasetsRepository::set('second', [[]], __DIR__);
$this->expectException(DatasetAlreadyExists::class);
$this->expectExceptionMessage('A dataset with the name `second` already exist in scope ['.__DIR__.'].');
$this->expectExceptionMessage('A dataset with the name `second` already exists in scope ['.__DIR__.'].');
DatasetsRepository::set('second', [[]], __DIR__);
});