typo in constant name

This commit is contained in:
Christopher Smith
2014-07-10 16:23:37 -05:00
parent c9cd0c9e64
commit 488cd6aaeb
4 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ import org.springframework.cloud.service.common.PostgresqlServiceInfo;
public class PostgresqlServiceInfoCreator extends RelationalServiceInfoCreator<PostgresqlServiceInfo> {
public PostgresqlServiceInfoCreator() {
super(new Tags("postgresql"), PostgresqlServiceInfo.URI_SCHEMA);
super(new Tags("postgresql"), PostgresqlServiceInfo.URI_SCHEME);
}
@Override

View File

@@ -13,7 +13,7 @@ public class PostgresqlServiceInfo extends RelationalServiceInfo {
public static final String JDBC_URL_TYPE = "postgresql";
public static final String URI_SCHEMA = "postgres";
public static final String URI_SCHEME = "postgres";
public PostgresqlServiceInfo(String id, String url) {
super(id, url, JDBC_URL_TYPE);

View File

@@ -10,7 +10,7 @@ import org.springframework.cloud.service.common.PostgresqlServiceInfo;
public class PostgresqlServiceInfoCreator extends RelationalServiceInfoCreator<PostgresqlServiceInfo> {
public PostgresqlServiceInfoCreator() {
super(PostgresqlServiceInfo.URI_SCHEMA);
super(PostgresqlServiceInfo.URI_SCHEME);
}
@Override

View File

@@ -19,7 +19,7 @@ import org.springframework.cloud.service.common.PostgresqlServiceInfo;
*/
public class HerokuConnectorPostgresqlServiceTest extends AbstractHerokuConnectorRelationalServiceTest {
public HerokuConnectorPostgresqlServiceTest() {
super(PostgresqlServiceInfo.URI_SCHEMA);
super(PostgresqlServiceInfo.URI_SCHEME);
}
@Test