File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,10 @@ whitelist:
85
85
- ' .. versionadded:: 1.18' # Flex in setup/upgrade_minor.rst
86
86
- ' .. versionadded:: 1.0.0' # Encore
87
87
- ' .. versionadded:: 5.1' # Private Services
88
+ - ' 0 => 123' # assertion for var_dumper - components/var_dumper.rst
89
+ - ' 1 => "foo"' # assertion for var_dumper - components/var_dumper.rst
90
+ - ' 123,' # assertion for var_dumper - components/var_dumper.rst
91
+ - ' "foo",' # assertion for var_dumper - components/var_dumper.rst
88
92
- ' $var .= "Because of this `\xE9` octet (\\xE9),\n";'
89
93
- ' .. versionadded:: 0.2' # MercureBundle
90
94
- ' provides a ``loginUser()`` method to simulate logging in in your functional'
Original file line number Diff line number Diff line change @@ -326,11 +326,11 @@ Example::
326
326
// the expected dump contents don't have the default VarDumper structure
327
327
// because of the custom casters and flags used in the test
328
328
$expectedDump = <<<EOTXT
329
- [
330
- 123,
331
- "foo",
332
- ]
333
- EOTXT;
329
+ [
330
+ 123,
331
+ "foo",
332
+ ]
333
+ EOTXT;
334
334
335
335
// if the first argument is a string, it must be the whole expected dump
336
336
$this->assertDumpEquals($expectedDump, $testedVar);
You can’t perform that action at this time.
0 commit comments