Skip to content

Commit 3c068f0

Browse files
committed
fix tests
1 parent 0e92155 commit 3c068f0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Unit/NotificationChannels/TelegramTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function test_connect(): void
7676
return $request->data() === [
7777
'chat_id' => '12345',
7878
'text' => 'Connected!',
79-
'parse_mode' => 'markdown',
79+
'parse_mode' => 'HTML',
8080
'disable_web_page_preview' => true,
8181
];
8282
}
@@ -103,7 +103,7 @@ public function test_send(): void
103103
return $request->data() === [
104104
'chat_id' => '12345',
105105
'text' => 'Hello',
106-
'parse_mode' => 'markdown',
106+
'parse_mode' => 'HTML',
107107
'disable_web_page_preview' => true,
108108
];
109109
}

0 commit comments

Comments
 (0)