We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf221ae commit 5f2f858Copy full SHA for 5f2f858
MongoDB.DriverUnitTests/Jira/CSharp355Tests.cs
@@ -71,6 +71,13 @@ public void TestDefaultBitmap()
71
[Test]
72
public void TestBitmap()
73
{
74
+ if (TestEnvironment.IsMono)
75
+ {
76
+ // This test does not work in Mono on Ubuntu. Throws a
77
+ // System.TypeInitializationException on the Bitmap
78
+ // construction
79
+ return;
80
+ }
81
var bitmap = GetTestBitmap();
82
var c = new C { I = bitmap, B = bitmap };
83
_collection.RemoveAll();
0 commit comments