Skip to content

Commit 1ed9335

Browse files
committed
[Config] Do not skip YamlReferenceDumperTest entirely
1 parent c360a22 commit 1ed9335

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/Symfony/Component/Config/Tests/Definition/Dumper/YamlReferenceDumperTest.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public function testDumper()
2222

2323
$dumper = new YamlReferenceDumper();
2424

25+
$this->assertContains($this->getConfigurationAsString(), $dumper->dump($configuration));
2526
$this->markTestIncomplete('The Yaml Dumper currently does not support prototyped arrays');
26-
$this->assertEquals($this->getConfigurationAsString(), $dumper->dump($configuration));
2727
}
2828

2929
private function getConfigurationAsString()
@@ -32,7 +32,7 @@ private function getConfigurationAsString()
3232
acme_root:
3333
boolean: true
3434
scalar_empty: ~
35-
scalar_null: ~
35+
scalar_null: null
3636
scalar_true: true
3737
scalar_false: false
3838
scalar_default: default
@@ -59,10 +59,6 @@ enum: ~ # One of "this"; "that"
5959
6060
# Prototype
6161
name: ~
62-
connections:
63-
# Prototype
64-
- { user: ~, pass: ~ }
65-
6662
EOL;
6763
}
6864
}

0 commit comments

Comments
 (0)