Navigation Menu

Skip to content

Commit

Permalink
Fix assertions around delete index actions
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 2, 2012
1 parent 66a9c50 commit 08e3462
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/api-configuration.test.js
Expand Up @@ -436,9 +436,9 @@ suite('Configuration API', function() {
'Action=DeleteIndexField&Version=2011-02-01')
.next(function(response) {
assert.deepEqual({ domain: domain.exists(),
field: domain.field() },
field: field.exists() },
{ domain: true,
field: faldomain.field() });
field: false });

response = toParsedResponse(response);
assert.deepEqual(response.pattern,
Expand Down Expand Up @@ -469,9 +469,9 @@ suite('Configuration API', function() {
'Action=DeleteIndexField&Version=2011-02-01')
.next(function(response) {
assert.deepEqual({ domain: domain.exists(),
field: domain.field() },
field: field.exists() },
{ domain: true,
field: faldomain.field() });
field: false });

response = toParsedResponse(response);
assert.deepEqual(response.pattern,
Expand Down Expand Up @@ -502,9 +502,9 @@ suite('Configuration API', function() {
'Action=DeleteIndexField&Version=2011-02-01')
.next(function(response) {
assert.deepEqual({ domain: domain.exists(),
field: domain.field() },
field: field.exists() },
{ domain: true,
field: faldomain.field() });
field: false });

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

0 comments on commit 08e3462

Please sign in to comment.