Skip to content

Commit ed7b319

Browse files
committed
Minor code style change.
1 parent 16b62fe commit ed7b319

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/Magick.NET.Tests/MagickImageTests/TheDistortMethod.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,12 @@ public void ShouldBeAbleToPerformPerspectiveDistortion()
5757
using var image = new MagickImage(Files.MagickNETIconPNG);
5858
image.BackgroundColor = MagickColors.Cornsilk;
5959
image.VirtualPixelMethod = VirtualPixelMethod.Background;
60-
image.Distort(DistortMethod.Perspective, [0, 0, 0, 0, 0, 90, 0, 90, 90, 0, 90, 25, 90, 90, 90, 65]);
60+
image.Distort(DistortMethod.Perspective, [
61+
0, 0, 0, 0,
62+
0, 90, 0, 90,
63+
90, 0, 90, 25,
64+
90, 90, 90, 65
65+
]);
6166
image.Clamp();
6267

6368
ColorAssert.Equal(new MagickColor("#0000"), image, 1, 64);

0 commit comments

Comments
 (0)