Browse Source

`VarDumperTest` fixed

9899-cache-bug
Klimov Paul 9 years ago
parent
commit
f48f63ecf5
  1. 3
      tests/framework/helpers/VarDumperTest.php

3
tests/framework/helpers/VarDumperTest.php

@ -117,9 +117,8 @@ RESULT;
{
$var = new \StdClass();
$var->testFunction = function () {return 2;};
$expectedResult = VarDumper::dumpAsString($var);
$exportResult = VarDumper::export($var);
$this->assertEqualsWithoutLE($expectedResult, $exportResult);
$this->assertNotEmpty($exportResult);
$master = new \StdClass();
$slave = new \StdClass();

Loading…
Cancel
Save