Skip to content

Commit 2356674

Browse files
committed
fix test
1 parent 47a1f86 commit 2356674

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

backend/tests/daily/connectors/google_drive/test_sections.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -46,28 +46,28 @@ def test_google_drive_sections(
4646
assert len(doc.sections) == 5
4747

4848
header_section = doc.sections[0]
49-
assert header_section.text == "Title\n\nThis is a Google Doc with sections"
49+
assert header_section.text == "Title\nThis is a Google Doc with sections"
5050
assert header_section.link is not None
5151
assert header_section.link.endswith(
5252
"?tab=t.0#heading=h.hfjc17k6qwzt"
5353
) or header_section.link.endswith("?tab=t.0#heading=h.hfjc17k6qwzt")
5454

5555
section_1 = doc.sections[1]
56-
assert section_1.text == "Section 1\n\nSection 1 content"
56+
assert section_1.text == "Section 1\nSection 1 content"
5757
assert section_1.link is not None
5858
assert section_1.link.endswith("?tab=t.0#heading=h.8slfx752a3g5")
5959

6060
section_2 = doc.sections[2]
61-
assert section_2.text == "Sub-Section 1-1\n\nSub-Section 1-1 content"
61+
assert section_2.text == "Sub-Section 1-1\nSub-Section 1-1 content"
6262
assert section_2.link is not None
6363
assert section_2.link.endswith("?tab=t.0#heading=h.4kj3ayade1bp")
6464

6565
section_3 = doc.sections[3]
66-
assert section_3.text == "Sub-Section 1-2\n\nSub-Section 1-2 content"
66+
assert section_3.text == "Sub-Section 1-2\nSub-Section 1-2 content"
6767
assert section_3.link is not None
6868
assert section_3.link.endswith("?tab=t.0#heading=h.pm6wrpzgk69l")
6969

7070
section_4 = doc.sections[4]
71-
assert section_4.text == "Section 2\n\nSection 2 content"
71+
assert section_4.text == "Section 2\nSection 2 content"
7272
assert section_4.link is not None
7373
assert section_4.link.endswith("?tab=t.0#heading=h.2m0s9youe2k9")

0 commit comments

Comments
 (0)