Skip to content

Commit

Permalink
CSHARP-389 - Fix unit test break. The 32 bit format does not seem to …
Browse files Browse the repository at this point in the history
…be supported on our test env (Ubuntu) though supported on Windows on OS X
  • Loading branch information
Sridhar Nanjundeswaran committed Mar 25, 2013
1 parent 5f1e099 commit cf221ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MongoDB.DriverUnitTests/Jira/CSharp355Tests.cs
Expand Up @@ -106,7 +106,7 @@ private byte[] GetBytes(Bitmap bitmap)

private Bitmap GetTestBitmap ()
{
var bitmap = new Bitmap (2, 2, PixelFormat.Format32bppRgb);
var bitmap = new Bitmap (2, 2, PixelFormat.Format24bppRgb);
for (int x = 0; x < bitmap.Height; ++x)
{
for (int y = 0; y < bitmap.Width; ++y)
Expand Down

0 comments on commit cf221ae

Please sign in to comment.