Skip to content

Commit

Permalink
#23 フォーマット
Browse files Browse the repository at this point in the history
  • Loading branch information
TakenPt committed Apr 21, 2024
1 parent f573058 commit 37278ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KoeBook.Test/Epub/ScrapingAozoraServiceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public async void ProcessChildrenlayout2Test(string html, IReadOnlyCollection<Pa
var chapter = Assert.Single(document.Chapters);
var section = Assert.Single(chapter.Sections);
Assert.Equal(expectedParagraphs.Count, document.Chapters[^1].Sections[^1].Elements.Count);
Assert.All(expectedParagraphs.Zip(document.Chapters[^1].Sections[^1].Elements), v =>
Assert.All(expectedParagraphs.Zip(document.Chapters[^1].Sections[^1].Elements), v =>
{
var actualParagraph = Assert.IsType<Paragraph>(v.Second);
Assert.Equal(v.First.Text, actualParagraph.Text);
Expand Down

0 comments on commit 37278ba

Please sign in to comment.