Skip to content

Commit

Permalink
Code style changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Oct 23, 2021
1 parent 21e41cc commit 448244c
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,14 @@ public class TheStartPointsizeProperty
[Fact]
public void ShouldSetTheDefine()
{
var defines = new CaptionReadDefines
{
StartFontPointsize = 42,
};

using (var image = new MagickImage())
{
image.Settings.SetDefines(new CaptionReadDefines
{
StartFontPointsize = 42,
});
image.Settings.SetDefines(defines);

Assert.Equal("42", image.Settings.GetDefine(MagickFormat.Caption, "start-pointsize"));
}
Expand Down

0 comments on commit 448244c

Please sign in to comment.