Navigation Menu

Skip to content

Commit

Permalink
Fix expected case for cs-describe-domain
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 6, 2012
1 parent 282bf56 commit e1e8055
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/cs-commands.test.js
Expand Up @@ -96,8 +96,9 @@ suite('cs-describe-domain', function() {
function report(domain, hostname) {
return [
'Domain Name ' + domain.name,
'Document Service Endpoint ' + domain.getDocumentsEndpoint(hostname)),
'Search Endpoint ' + domain.searchableDocumentsCount,
'Document Service Endpoint ' + domain.getDocumentsEndpoint(hostname),
'Search Endpoint ' + domain.getSearchEndpoint(hostname));
'Searchable Documents ' + domain.searchableDocumentsCount,
'Index Fields ' + domain.name,
'SearchPartitionCount ' + domain.searchPartitionCount,
'SearchInstanceCount ' + domain.searchInstanceCount,
Expand Down

0 comments on commit e1e8055

Please sign in to comment.