Skip to content

Commit

Permalink
Fix nagative date reading test.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed Jun 18, 2010
1 parent a95cc7e commit 25ab7ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/MongoDB.Tests/UnitTests/Bson/TestBsonReader.cs
Expand Up @@ -281,7 +281,7 @@ public void TestCanReadNagativeDates()

var document = Deserialize(bson);

Assert.AreEqual(new DateTime(1960,1,1),document["date"]);
Assert.AreEqual(new DateTime(1960,1,1).ToUniversalTime(),document["date"]);
}
}
}

0 comments on commit 25ab7ea

Please sign in to comment.