Skip to content

Commit

Permalink
fixed a unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Oct 17, 2007
1 parent 7732b30 commit da8207c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -50,7 +50,7 @@ public void testFindNode() throws Exception {
Assert.assertEquals(node.getSyncURL().toString(), "http://localhost:8080/sync", "Wrong syncUrl");
Assert.assertEquals(node.getSchemaVersion(), "1", "Wrong schemaVersion");
Assert.assertEquals(node.getDatabaseType(), "MySQL", "Wrong databaseType");
Assert.assertEquals(node.getDatabaseVersion(), "5.0", "Wrong databaseVersion");
Assert.assertEquals(node.getDatabaseVersion(), "5", "Wrong databaseVersion");
}

@Test(groups = "continuous")
Expand Down Expand Up @@ -96,7 +96,7 @@ public void testFindIdentity() throws Exception {
Assert.assertEquals(node.getSyncURL().toString(), "http://localhost:8080/sync", "Wrong syncUrl");
Assert.assertEquals(node.getSchemaVersion(), "1", "Wrong schemaVersion");
Assert.assertEquals(node.getDatabaseType(), "MySQL", "Wrong databaseType");
Assert.assertEquals(node.getDatabaseVersion(), "5.0", "Wrong databaseVersion");
Assert.assertEquals(node.getDatabaseVersion(), "5", "Wrong databaseVersion");
}

@Test(groups = "continuous")
Expand Down

0 comments on commit da8207c

Please sign in to comment.