From 8ab7027e4bbeceebdbee5b6fa4fde5e97066a9ee Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 15 Jan 2021 09:35:51 +0100 Subject: [PATCH] [Notifier] [GoogleChat] Fix wrong test --- .../Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php b/src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php index 0840a3476a..5676bfecd3 100644 --- a/src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php +++ b/src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php @@ -46,7 +46,7 @@ final class GoogleChatTransportFactoryTest extends TransportFactoryTestCase public function incompleteDsnProvider(): iterable { - yield 'missing credentials' => ['googlechat://chat.googleapis.com/v1/spaces/AAAAA_YYYYY/messages']; + yield 'missing credentials' => ['googlechat://chat.googleapis.com/AAAAA_YYYYY']; } public function unsupportedSchemeProvider(): iterable