Skip to content

Commit cf221ae

Browse files
author
Sridhar Nanjundeswaran
committed
CSHARP-389 - Fix unit test break. The 32 bit format does not seem to be supported on our test env (Ubuntu) though supported on Windows on OS X
1 parent 5f1e099 commit cf221ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MongoDB.DriverUnitTests/Jira/CSharp355Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private byte[] GetBytes(Bitmap bitmap)
106106

107107
private Bitmap GetTestBitmap ()
108108
{
109-
var bitmap = new Bitmap (2, 2, PixelFormat.Format32bppRgb);
109+
var bitmap = new Bitmap (2, 2, PixelFormat.Format24bppRgb);
110110
for (int x = 0; x < bitmap.Height; ++x)
111111
{
112112
for (int y = 0; y < bitmap.Width; ++y)

0 commit comments

Comments
 (0)