Skip to content

Commit 6fd003c

Browse files
committed
test: move GetCompiledModelTest that was in wrong place
1 parent 75d1b3b commit 6fd003c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/_support/Models/GetCompiledModelTest.php renamed to tests/system/Models/GetCompiledModelTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private function createModel(string $modelName): Model
4444
public function testGetCompiledInsert(): void
4545
{
4646
$this->expectException(ModelException::class);
47-
$this->expectExceptionMessage('You cannot use `getCompiledInsert()` in `Tests\Support\Models\UserObjModel`.');
47+
$this->expectExceptionMessage('You cannot use "getCompiledInsert()" in "Tests\Support\Models\UserObjModel".');
4848

4949
$this->createModel(UserObjModel::class);
5050

@@ -60,7 +60,7 @@ public function testGetCompiledInsert(): void
6060
public function testGetCompiledUpdate(): void
6161
{
6262
$this->expectException(ModelException::class);
63-
$this->expectExceptionMessage('You cannot use `getCompiledUpdate()` in `Tests\Support\Models\UserObjModel`.');
63+
$this->expectExceptionMessage('You cannot use "getCompiledUpdate()" in "Tests\Support\Models\UserObjModel".');
6464

6565
$this->createModel(UserObjModel::class);
6666

0 commit comments

Comments
 (0)