Skip to content

Commit

Permalink
Now that the registration server is writing the version, the unit tes…
Browse files Browse the repository at this point in the history
…t was reporting incorrect numbers
  • Loading branch information
chenson42 committed Dec 13, 2007
1 parent 3e82b22 commit 321c3f0
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", "Wrong databaseVersion");
Assert.assertEquals(node.getDatabaseVersion(), "5.0", "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", "Wrong databaseVersion");
Assert.assertEquals(node.getDatabaseVersion(), "5.0", "Wrong databaseVersion");
}

@Test(groups = "continuous")
Expand Down

0 comments on commit 321c3f0

Please sign in to comment.