Skip to content

Commit 39f350d

Browse files
committed
Updated unit tests due to changes in ImageMagick.
1 parent b40ac44 commit 39f350d

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

tests/Magick.NET.Tests/MagickNETTests/TheSupportedFormatsProperty.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,9 +1094,9 @@ public void ShouldReturnTheFormatsWithTheCorrectSettings()
10941094
case MagickFormat.Msvg:
10951095
Assert.True(formatInfo.SupportsMultipleFrames);
10961096
Assert.True(formatInfo.SupportsReading);
1097-
Assert.False(formatInfo.CanReadMultithreaded);
1097+
Assert.True(formatInfo.CanReadMultithreaded);
10981098
Assert.True(formatInfo.SupportsWriting);
1099-
Assert.False(formatInfo.CanWriteMultithreaded);
1099+
Assert.True(formatInfo.CanWriteMultithreaded);
11001100
break;
11011101
case MagickFormat.Mtv:
11021102
Assert.True(formatInfo.SupportsMultipleFrames);
@@ -1229,7 +1229,7 @@ public void ShouldReturnTheFormatsWithTheCorrectSettings()
12291229
Assert.True(formatInfo.SupportsReading);
12301230
Assert.False(formatInfo.CanReadMultithreaded);
12311231
Assert.True(formatInfo.SupportsWriting);
1232-
Assert.False(formatInfo.CanWriteMultithreaded);
1232+
Assert.True(formatInfo.CanWriteMultithreaded);
12331233
break;
12341234
case MagickFormat.Pct:
12351235
Assert.False(formatInfo.SupportsMultipleFrames);
@@ -1579,7 +1579,7 @@ public void ShouldReturnTheFormatsWithTheCorrectSettings()
15791579
Assert.True(formatInfo.SupportsReading);
15801580
Assert.False(formatInfo.CanReadMultithreaded);
15811581
Assert.True(formatInfo.SupportsWriting);
1582-
Assert.False(formatInfo.CanWriteMultithreaded);
1582+
Assert.True(formatInfo.CanWriteMultithreaded);
15831583
break;
15841584
case MagickFormat.Rw2:
15851585
Assert.True(formatInfo.SupportsMultipleFrames);
@@ -1717,16 +1717,16 @@ public void ShouldReturnTheFormatsWithTheCorrectSettings()
17171717
case MagickFormat.Svg:
17181718
Assert.True(formatInfo.SupportsMultipleFrames);
17191719
Assert.True(formatInfo.SupportsReading);
1720-
Assert.False(formatInfo.CanReadMultithreaded);
1720+
Assert.True(formatInfo.CanReadMultithreaded);
17211721
Assert.True(formatInfo.SupportsWriting);
1722-
Assert.False(formatInfo.CanWriteMultithreaded);
1722+
Assert.True(formatInfo.CanWriteMultithreaded);
17231723
break;
17241724
case MagickFormat.Svgz:
17251725
Assert.True(formatInfo.SupportsMultipleFrames);
17261726
Assert.True(formatInfo.SupportsReading);
1727-
Assert.False(formatInfo.CanReadMultithreaded);
1727+
Assert.True(formatInfo.CanReadMultithreaded);
17281728
Assert.True(formatInfo.SupportsWriting);
1729-
Assert.False(formatInfo.CanWriteMultithreaded);
1729+
Assert.True(formatInfo.CanWriteMultithreaded);
17301730
break;
17311731
case MagickFormat.Text:
17321732
Assert.True(formatInfo.SupportsMultipleFrames);

0 commit comments

Comments
 (0)