Skip to content

Commit 8bf7756

Browse files
committed
Fix test
1 parent 39d3e38 commit 8bf7756

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_telegraph.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ def test_flow(self):
5151

5252
def test_get_page_html(self):
5353
telegraph = Telegraph()
54-
response = telegraph.get_page('Sample-Page-12-15')
54+
response = telegraph.get_page('Hey-01-17-2')
5555

5656
self.assertEqual(response['content'], '<p>Hello, world!</p>')
5757

5858
def test_get_page(self):
5959
telegraph = Telegraph()
60-
response = telegraph.get_page('Sample-Page-12-15', return_html=False)
60+
response = telegraph.get_page('Hey-01-17-2', return_html=False)
6161

6262
self.assertEqual(
6363
response['content'],
@@ -66,6 +66,6 @@ def test_get_page(self):
6666

6767
def test_get_page_without_content(self):
6868
telegraph = Telegraph()
69-
response = telegraph.get_page('Sample-Page-12-15', return_content=False)
69+
response = telegraph.get_page('Hey-01-17-2', return_content=False)
7070

7171
self.assertTrue('content' not in response)

0 commit comments

Comments
 (0)