Skip to content

Commit b693770

Browse files
committed
Try fix build error
Can not reproduce it locally..
1 parent 3ddd020 commit b693770

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterPrimitivesTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void WriteAsciiStringWithNullWritesEmpty()
4242
byte[] output = writer.GetData();
4343

4444
Assert.Equal(0, count);
45-
Assert.Equal([], output);
45+
Assert.Equal(Array.Empty<byte>(), output);
4646
}
4747

4848
[Fact]
@@ -62,7 +62,7 @@ public void WriteUnicodeStringWithNullWritesEmpty()
6262
byte[] output = writer.GetData();
6363

6464
Assert.Equal(0, count);
65-
Assert.Equal([], output);
65+
Assert.Equal(Array.Empty<byte>(), output);
6666
}
6767

6868
[Theory]

0 commit comments

Comments
 (0)