Navigation Menu

Skip to content

Commit

Permalink
Fix missing variable "domain"
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 2, 2012
1 parent 6ed1115 commit 90014d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/api-configuration.test.js
Expand Up @@ -233,7 +233,8 @@ suite('Configuration API', function() {
'Host': 'cloudsearch.localhost'
})
.next(function(response) {
assert.isTrue((new Domain('companies', context).exists()));
var domain = new Domain('companies', context);
assert.isTrue(.exists());

response = toParsedResponse(response);
assert.deepEqual(response.pattern,
Expand Down

0 comments on commit 90014d6

Please sign in to comment.