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 4, 2023
1 parent 9485e3c commit a201344
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/Magick.NET.Tests/TestHelpers/TestImageProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ public TestImageProfile(string name, byte[] bytes)

public string Name { get; }

public bool Equals(IImageProfile other) => false;
public bool Equals(IImageProfile other)
=> false;

public byte[] GetData() => _bytes;
public byte[] GetData()
=> _bytes;

public byte[] ToByteArray() => _bytes;
public byte[] ToByteArray()
=> _bytes;
}

0 comments on commit a201344

Please sign in to comment.