Skip to content

Commit

Permalink
Merge pull request #377 from veena-udayabhanu/release
Browse files Browse the repository at this point in the history
Fix test issue for DateTime comparison
  • Loading branch information
guangyang committed Jul 1, 2013
2 parents 6cb7c1a + 1602104 commit 3e97d96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void assertEquality(ComplexEntity other) {
Assert.assertEquals(this.getPartitionKey(), other.getPartitionKey());
Assert.assertEquals(this.getRowKey(), other.getRowKey());

assertDateApproxEquals(this.getDateTime(), other.getDateTime(), 100);
Assert.assertEquals(this.getDateTime().toString(), other.getDateTime().toString());

Assert.assertEquals(this.getGuid(), other.getGuid());
Assert.assertEquals(this.getString(), other.getString());
Expand Down

0 comments on commit 3e97d96

Please sign in to comment.