8000 [FrameworkBundle] Fix tests · symfony/symfony@4280f21 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4280f21

Browse files
committed
[FrameworkBundle] Fix tests
That are not synchronized with code anymore (after merge in upper branches)
1 parent 6658316 commit 4280f21

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/mailer_with_dsn.php

Lines changed: 5 additions & 0 deletions
10000
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
'sender' => 'sender@example.org',
1111
'recipients' => ['redirected@example.org', 'redirected1@example.org'],
1212
],
13+
'headers' => [
14+
'from' => 'from@example.org',
15+
'bcc' => ['bcc1@example.org', 'bcc2@example.org'],
16+
'foo' => 'bar',
17+
],
1318
],
1419
]);
1520
};

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/mailer_with_transports.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
'sender' => 'sender@example.org',
1414
'recipients' => ['redirected@example.org', 'redirected1@example.org'],
1515
],
16+
'headers' => [
17+
'from' => 'from@example.org',
18+
'bcc' => ['bcc1@example.org', 'bcc2@example.org'],
19+
'foo' => 'bar',
20+
],
1621
],
1722
]);
1823
};

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/mailer_with_transports.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
<framework:recipients>redirected@example.org</framework:recipients>
1616
<framework:recipients>redirected1@example.org</framework:recipients>
1717
</framework:envelope>
18+
<framework:header name="from">from@example.org</framework:header>
19+
<framework:header name="bcc">bcc1@example.org</framework:header>
20+
<framework:header name="foo">bar</framework:header>
1821
</framework:mailer>
1922
</framework:config>
2023
</container>

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/mailer_with_transports.yml

Lines changed: 4 additions & 0 deletions
6E0A
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ framework:
88
recipients:
99
- redirected@example.org
1010
- redirected1@example.org
11+
headers:
12+
from: from@example.org
13+
bcc: [bcc1@example.org, bcc2@example.org]
14+
foo: bar

0 commit comments

Comments
 (0)
0