1111import pytest
1212from azure_devtools .scenario_tests import ReplayableTest
1313
14- from microsoft . botbuilder .schema import *
15- from microsoft . botframework .connector import ConnectorClient
16- from microsoft . botframework .connector .auth import MicrosoftAppCredentials
14+ from botbuilder .schema import *
15+ from botframework .connector import ConnectorClient
16+ from botframework .connector .auth import MicrosoftAppCredentials
1717
1818from .authentication_stub import MicrosoftTokenAuthenticationStub
1919
@@ -141,7 +141,7 @@ def test_conversations_send_to_conversation_with_attachment(self):
141141 title = 'A static image' ,
142142 text = 'JPEG image' ,
143143 images = [
144- CardImage (url = 'https://docs.microsoft. com/en-us/bot-framework/media/designing-bots/core/dialogs-screens.png' )
144+ CardImage (url = 'https://docs.com/en-us/bot-framework/media/designing-bots/core/dialogs-screens.png' )
145145 ])
146146
147147 card2 = HeroCard (
@@ -158,8 +158,8 @@ def test_conversations_send_to_conversation_with_attachment(self):
158158 from_property = ChannelAccount (id = BOT_ID ),
159159 attachment_layout = AttachmentLayoutTypes .list ,
160160 attachments = [
161- Attachment (content_type = 'application/vnd.microsoft. card.hero' , content = card1 ),
162- Attachment (content_type = 'application/vnd.microsoft. card.hero' , content = card2 ),
161+ Attachment (content_type = 'application/vnd.card.hero' , content = card1 ),
162+ Attachment (content_type = 'application/vnd.card.hero' , content = card2 ),
163163 ])
164164
165165 connector = ConnectorClient (self .credentials , base_url = SERVICE_URL )
0 commit comments