Skip to content

Commit 1264c9e

Browse files
author
rstam
committed
Merging CSHARP-475 with master.
1 parent 8829537 commit 1264c9e

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

DriverUnitTests/Jira/CSharp475Tests.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,12 @@
1515

1616
using System;
1717
using System.Collections.Generic;
18-
using System.IO;
1918
using System.Linq;
20-
using System.Runtime.Serialization;
2119
using System.Text;
2220
using NUnit.Framework;
2321

2422
using MongoDB.Bson;
25-
using MongoDB.Bson.Serialization.Attributes;
2623
using MongoDB.Driver;
27-
using MongoDB.Driver.Builders;
2824
using MongoDB.Driver.Linq;
2925

3026
namespace MongoDB.DriverUnitTests.Jira.CSharp475
@@ -35,7 +31,6 @@ public class CSharp475Tests
3531
public abstract class Base
3632
{
3733
public ObjectId Id { get; set; }
38-
3934
public string A { get; set; }
4035
}
4136

@@ -52,7 +47,6 @@ public void ProjectAfterOfTypeTest()
5247
var collection = db.GetCollection<Base>("ProjectTest");
5348
collection.Drop();
5449

55-
5650
var t1 = new T1 { A = "T1.A", B = "T1.B" };
5751
collection.Insert(t1);
5852

0 commit comments

Comments
 (0)