Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
falleretic committed Nov 29, 2023
1 parent 8abaac8 commit 2ff10d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Examples/ApiExamples/ApiExamples/ExDocumentBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,7 @@ public void InsertFloatingImage()

image = (Shape)doc.GetChild(NodeType.Shape, 1, true);

TestUtil.VerifyImageInShape(252, 213, ImageType.Png, image);
TestUtil.VerifyImageInShape(272, 92, ImageType.Png, image);
Assert.AreEqual(100.0d, image.Left);
Assert.AreEqual(250.0d, image.Top);
Assert.AreEqual(200.0d, image.Width);
Expand Down
2 changes: 1 addition & 1 deletion Examples/ApiExamples/ApiExamples/ExMailMergeEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public void ImageFromUrl()

imageShape = (Shape)doc.GetChild(NodeType.Shape, 0, true);

TestUtil.VerifyImageInShape(252, 213, ImageType.Png, imageShape);
TestUtil.VerifyImageInShape(272, 92, ImageType.Png, imageShape);
}

//ExStart
Expand Down

0 comments on commit 2ff10d2

Please sign in to comment.