Skip to content

Commit e70edeb

Browse files
committed
test: fix incorrect property name $_original
1 parent 2b819ac commit e70edeb

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
@@ -1185,7 +1185,7 @@ protected function getMappedEntity()
11851185
'foo' => null,
11861186
'simple' => null,
11871187
];
1188-
protected $_original = [
1188+
protected $original = [
11891189
'foo' => null,
11901190
'simple' => null,
11911191
];
@@ -1215,7 +1215,7 @@ protected function getSwappedEntity()
12151215
'foo' => 'foo',
12161216
'bar' => 'bar',
12171217
];
1218-
protected $_original = [
1218+
protected $original = [
12191219
'foo' => 'foo',
12201220
'bar' => 'bar',
12211221
];
@@ -1234,7 +1234,7 @@ protected function getSimpleSwappedEntity()
12341234
'foo' => 'foo',
12351235
'bar' => 'bar',
12361236
];
1237-
protected $_original = [
1237+
protected $original = [
12381238
'foo' => 'foo',
12391239
'bar' => 'bar',
12401240
];
@@ -1263,7 +1263,7 @@ protected function getCastEntity($data = null): Entity
12631263
'twelfth' => null,
12641264
'thirteenth' => null,
12651265
];
1266-
protected $_original = [
1266+
protected $original = [
12671267
'first' => null,
12681268
'second' => null,
12691269
'third' => null,
@@ -1313,7 +1313,7 @@ protected function getCastNullableEntity()
13131313
'integer_0' => null,
13141314
'string_value_not_null' => 'value',
13151315
];
1316-
protected $_original = [
1316+
protected $original = [
13171317
'string_null' => null,
13181318
'string_empty' => null,
13191319
'integer_null' => null,
@@ -1341,7 +1341,7 @@ protected function getCustomCastEntity()
13411341
'third' => null,
13421342
'fourth' => null,
13431343
];
1344-
protected $_original = [
1344+
protected $original = [
13451345
'first' => null,
13461346
'second' => null,
13471347
'third' => null,

0 commit comments

Comments
 (0)