Skip to content

Commit dda004a

Browse files
committed
test: fix incorrect property name $_original
1 parent 5a340d0 commit dda004a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/system/Entity/EntityTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ protected function getMappedEntity()
11641164
'foo' => null,
11651165
'simple' => null,
11661166
];
1167-
protected $_original = [
1167+
protected $original = [
11681168
'foo' => null,
11691169
'simple' => null,
11701170
];
@@ -1194,7 +1194,7 @@ protected function getSwappedEntity()
11941194
'foo' => 'foo',
11951195
'bar' => 'bar',
11961196
];
1197-
protected $_original = [
1197+
protected $original = [
11981198
'foo' => 'foo',
11991199
'bar' => 'bar',
12001200
];
@@ -1213,7 +1213,7 @@ protected function getSimpleSwappedEntity()
12131213
'foo' => 'foo',
12141214
'bar' => 'bar',
12151215
];
1216-
protected $_original = [
1216+
protected $original = [
12171217
'foo' => 'foo',
12181218
'bar' => 'bar',
12191219
];
@@ -1242,7 +1242,7 @@ protected function getCastEntity($data = null): Entity
12421242
'twelfth' => null,
12431243
'thirteenth' => null,
12441244
];
1245-
protected $_original = [
1245+
protected $original = [
12461246
'first' => null,
12471247
'second' => null,
12481248
'third' => null,
@@ -1292,7 +1292,7 @@ protected function getCastNullableEntity()
12921292
'integer_0' => null,
12931293
'string_value_not_null' => 'value',
12941294
];
1295-
protected $_original = [
1295+
protected $original = [
12961296
'string_null' => null,
12971297
'string_empty' => null,
12981298
'integer_null' => null,
@@ -1320,7 +1320,7 @@ protected function getCustomCastEntity()
13201320
'third' => null,
13211321
'fourth' => null,
13221322
];
1323-
protected $_original = [
1323+
protected $original = [
13241324
'first' => null,
13251325
'second' => null,
13261326
'third' => null,

0 commit comments

Comments
 (0)