Skip to content

Commit 6df976b

Browse files
committed
test: fix test Entity name
1 parent c357e4c commit 6df976b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/_support/Entity/Cast/CastUUID.php renamed to tests/_support/Entity/Cast/CastBinaryUUID.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use CodeIgniter\Entity\Cast\BaseCast;
1515

16-
class CastUUID extends BaseCast
16+
class CastBinaryUUID extends BaseCast
1717
{
1818
/**
1919
* Get

tests/_support/Entity/UUID.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
namespace Tests\Support\Entity;
1313

1414
use CodeIgniter\Entity\Entity;
15-
use Tests\Support\Entity\Cast\CastUUID;
15+
use Tests\Support\Entity\Cast\CastBinaryUUID;
1616

1717
class UUID extends Entity
1818
{
1919
protected $casts = [
2020
'id' => 'uuid',
2121
];
2222
protected $castHandlers = [
23-
'uuid' => CastUUID::class,
23+
'uuid' => CastBinaryUUID::class,
2424
];
2525
}

0 commit comments

Comments
 (0)