Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugh Bellamy <hughbellars@gmail.com>2018-04-01 01:41:17 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-04-01 01:41:17 +0300
commitfcd52894d9b65189cb4c08997590d980a1a19607 (patch)
tree31f8cbb733c782b468ef24a7a150cf7f75954de5 /mcs/class/System.Drawing
parent254013b0fdf59bada951b1265ad2636fda1d7467 (diff)
[System.Drawing] Remove failing jpeg flags tests (#7931)
Diffstat (limited to 'mcs/class/System.Drawing')
-rw-r--r--mcs/class/System.Drawing/Test/System.Drawing.Imaging/TestJpegCodec.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/mcs/class/System.Drawing/Test/System.Drawing.Imaging/TestJpegCodec.cs b/mcs/class/System.Drawing/Test/System.Drawing.Imaging/TestJpegCodec.cs
index e20460eb99c..9ec46e29680 100644
--- a/mcs/class/System.Drawing/Test/System.Drawing.Imaging/TestJpegCodec.cs
+++ b/mcs/class/System.Drawing/Test/System.Drawing.Imaging/TestJpegCodec.cs
@@ -96,8 +96,6 @@ namespace MonoTests.System.Drawing.Imaging {
Assert.AreEqual (72, bmp.HorizontalResolution, "HorizontalResolution");
Assert.AreEqual (72, bmp.VerticalResolution, "VerticalResolution");
- Assert.AreEqual (77896, bmp.Flags, "Flags");
-
ColorPalette cp = bmp.Palette;
Assert.AreEqual (256, cp.Entries.Length, "Palette.Entries");
Assert.AreEqual (0, cp.Flags, "Palette.Flags");
@@ -232,8 +230,6 @@ namespace MonoTests.System.Drawing.Imaging {
Assert.AreEqual (72, bmp.HorizontalResolution, "HorizontalResolution");
Assert.AreEqual (72, bmp.VerticalResolution, "VerticalResolution");
- Assert.AreEqual (77960, bmp.Flags, "Flags");
-
Assert.AreEqual (0, bmp.Palette.Entries.Length, "Palette.Entries");
/* note: under MS flags aren't constant between executions in this case (no palette) */
}