Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
miyaji255 committed Mar 3, 2024
1 parent e3c60f2 commit 4d54765
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions KoeBook.Test/Epub/EpubDocumentTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,17 @@ public void EnsureSection()

// 空でないときは無視
document.Chapters = [
new() {
new()
{
Title = "chapter1",
Sections = [
new("section1"),
new("section2"),
new("section3"),
],
},
new() {
new()
{
Title = "chapter2",
Sections = [],
},
Expand Down Expand Up @@ -93,17 +95,21 @@ public void EnsureParagraph()

// 空でないときは無視
document.Chapters = [
new() {
new()
{
Title = "chapter1",
Sections = [
new("section1") {
new("section1")
{
Elements = [
new Paragraph() {
new Paragraph()
{
Text = "paragraph1",
},
]
},
new("section1") {
new("section1")
{
Elements = []
},
],
Expand Down

0 comments on commit 4d54765

Please sign in to comment.