Skip to content

Commit efbddd6

Browse files
fix: Expect quoted string representations
There's a difference between `null` and `"null"`, which is prperly handled by the lib but not expected in the most recent tests.
1 parent f37f783 commit efbddd6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Tests/Unit/Scope/Extra/VariablesFromStackProviderTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function Render_simple_values_as_single_line_information(): void
3333
self::assertEquals([
3434
[
3535
'foo::bar()' => [
36-
'baz' => 'some value'
36+
'baz' => '"some value"'
3737
]
3838
]
3939
], $result);
@@ -65,8 +65,8 @@ public function Render_complex_values_as_multi_line_information(): void
6565
self::assertEquals([
6666
[
6767
'foo::bar()' => [
68-
'baz.name' => 'Stephan',
69-
'baz.gender' => 'male',
68+
'baz.name' => '"Stephan"',
69+
'baz.gender' => '"male"',
7070
]
7171
]
7272
], $result);

0 commit comments

Comments
 (0)