Skip to content

Commit

Permalink
Adjusted assertions to Skia m131
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinZiabek committed Oct 28, 2024
1 parent d77f0c3 commit 76c176c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions managed/NativeSkia.Tests/PdfDocumentTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void EmptyMetadata()

using var documentData = stream.DetachData();
TestFixture.SaveOutput("document_without_metadata.pdf", documentData);
documentData.ShouldHaveSize(709);
documentData.ShouldHaveSize(718);
}

[Test]
Expand Down Expand Up @@ -60,7 +60,7 @@ public void Metadata()

using var documentData = stream.DetachData();
TestFixture.SaveOutput("simple_document.pdf", documentData);
documentData.ShouldHaveSize(6_020);
documentData.ShouldHaveSize(6_029);
}

[Test]
Expand All @@ -82,7 +82,7 @@ public void AnnotationUrl()

using var documentData = stream.DetachData();
TestFixture.SaveOutput("document_with_url.pdf", documentData);
documentData.ShouldHaveSize(249_678);
documentData.ShouldHaveSize(249_687);
}

[Test]
Expand Down Expand Up @@ -114,6 +114,6 @@ public void InternalAnnotationAndLink()

using var documentData = stream.DetachData();
TestFixture.SaveOutput("document_with_internal_destination_and_link.pdf", documentData);
documentData.ShouldHaveSize(1_375);
documentData.ShouldHaveSize(1_393);
}
}
2 changes: 1 addition & 1 deletion managed/NativeSkia.Tests/SvgImageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ public void Svg()

using var documentData = stream.DetachData();
TestFixture.SaveOutput("document_svg.pdf", documentData);
documentData.ShouldHaveSize(3_314);
documentData.ShouldHaveSize(3_323);
}
}

0 comments on commit 76c176c

Please sign in to comment.