Skip to content

Commit 32f02fa

Browse files
committed
Changed result data in provider
1 parent b5e69b5 commit 32f02fa

1 file changed

Lines changed: 6 additions & 23 deletions

File tree

tests/Functional/AssocPathTest.php

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ public static function contextProvider()
1919
(object) ['foo' => (object) ['bar' => ['baz' => 3]]],
2020
['foo', 'bar', 'baz'],
2121
'baz',
22-
[
23-
'foo' => [
24-
'bar' => [
22+
(object) [
23+
'foo' => (object) [
24+
'bar' => (object) [
2525
'baz' => 'baz',
2626
],
2727
],
@@ -40,32 +40,15 @@ public static function contextProvider()
4040
],
4141
'foo.bar.qux',
4242
'quux',
43-
[
44-
'foo' => [
45-
'bar' => [
43+
(object) [
44+
'foo' => (object) [
45+
'bar' => (object) [
4646
'qux' => 'quux',
4747
],
4848
],
4949
'bar' => (object) \range(1, 3),
5050
],
5151
],
52-
[
53-
new class () {
54-
public $foo = 12;
55-
public $bar = [1, 2, 3];
56-
},
57-
'qux.quux',
58-
['foo' => 'foo'],
59-
[
60-
'foo' => 12,
61-
'bar' => [1, 2, 3],
62-
'qux' => [
63-
'quux' => [
64-
'foo' => 'foo',
65-
],
66-
],
67-
],
68-
],
6952
];
7053
}
7154

0 commit comments

Comments
 (0)