Skip to content

Commit e686df5

Browse files
committed
Fixed tests
1 parent ff16530 commit e686df5

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

pkg/stomp/Tests/StompConnectionFactoryConfigTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public static function provideConfigs()
6464
'connection_timeout' => 1,
6565
'sync' => false,
6666
'lazy' => true,
67+
'ssl_on' => false
6768
],
6869
];
6970

@@ -79,6 +80,7 @@ public static function provideConfigs()
7980
'connection_timeout' => 1,
8081
'sync' => false,
8182
'lazy' => true,
83+
'ssl_on' => false
8284
],
8385
];
8486

@@ -94,6 +96,7 @@ public static function provideConfigs()
9496
'connection_timeout' => 1,
9597
'sync' => false,
9698
'lazy' => true,
99+
'ssl_on' => false
97100
],
98101
];
99102

@@ -110,6 +113,7 @@ public static function provideConfigs()
110113
'sync' => true,
111114
'lazy' => false,
112115
'foo' => 'bar',
116+
'ssl_on' => false
113117
],
114118
];
115119

@@ -126,6 +130,7 @@ public static function provideConfigs()
126130
'sync' => false,
127131
'lazy' => true,
128132
'foo' => 'bar',
133+
'ssl_on' => false
129134
],
130135
];
131136
}

pkg/stomp/Tests/Symfony/RabbitMqStompTransportFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public function testShouldAllowAddConfiguration()
5959
'management_plugin_installed' => false,
6060
'management_plugin_port' => 15672,
6161
'lazy' => true,
62+
'ssl_on' => false
6263
], $config);
6364
}
6465

pkg/stomp/Tests/Symfony/StompTransportFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public function testShouldAllowAddConfiguration()
5555
'connection_timeout' => 1,
5656
'buffer_size' => 1000,
5757
'lazy' => true,
58+
'ssl_on' => false
5859
], $config);
5960
}
6061

0 commit comments

Comments
 (0)