Development

Changeset 8924

You must first sign up to be able to contribute.

Changeset 8924

Show
Ignore:
Timestamp:
05/13/08 11:02:29 (5 months ago)
Author:
fabien
Message:

fixed typo in sfYamlDumper tests

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/test/unit/yaml/sfYamlDumperTest.php

    r8923 r8924  
    142142} 
    143143$a = array('foo' => new A(), 'bar' => 1); 
    144 $t->is($dumper->dump($a), <<<EOF 
    145 foo: !!php/object:O:1:"A":1:{s:1:"a";s:3:"foo";} 
    146 bar: 1 
    147  
    148 EOF 
    149 , '->dump() is able to dump objects'); 
     144$t->is($dumper->dump($a), '{ foo: !!php/object:O:1:"A":1:{s:1:"a";s:3:"foo";}, bar: 1 }', '->dump() is able to dump objects');