Skip to content

Commit

Permalink
Remove features to build endpoint (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Dec 4, 2012
1 parent 041e5b4 commit 5adbb4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/gcs-commands.test.js
Expand Up @@ -258,9 +258,9 @@ suite('gcs-describe-domain', function() {
'=== Domain Summary ===\n' +
'Domain Name: domain1\n' +
'Document Service endpoint: ' +
arnToEndpoint(domain.documentsArn, hostPort) + '\n' +
arnToEndpoint(domain1.documentsArn, hostPort) + '\n' +
'Search Service endpoint: ' +
arnToEndpoint(domain.searchArn, hostPort) + '\n' +
arnToEndpoint(domain1.searchArn, hostPort) + '\n' +
'SearchInstanceType: null\n' +
'SearchPartitionCount: 0\n' +
'SearchInstanceCount: 0\n' +
Expand Down Expand Up @@ -920,7 +920,7 @@ suite('gcs-post-sdf', function() {
domain.getIndexField('description').setType('text').createSync();
domain.getIndexField('age').setType('uint').createSync();
domain.getIndexField('product').setType('literal').createSync();
endpoint = arnToEndpoint(domain.documentsArn, 'localhost:' + utils.testPort);
endpoint = arnToEndpoint(domain.documentsArn, '127.0.0.1:' + utils.testPort);
}

test('post add sdf json', function(done) {
Expand Down

0 comments on commit 5adbb4c

Please sign in to comment.