Skip to content

Commit 57b4a22

Browse files
committed
Fix unit test
1 parent fe1850e commit 57b4a22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/docs.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ describe('API.md', () => {
8787
},
8888
],
8989
successCount: 1,
90-
}
91-
var result = ref.respondNext('sendAll', batchResponse);
92-
ref.sendAll(messages);
90+
};
91+
ref.respondNext('sendAll', batchResponse);
92+
var result = ref.sendAll(messages);
9393
ref.flush();
9494
result.then(function (response) {
9595
console.assert(response === batchResponse, 'custom batch response is returned');

0 commit comments

Comments
 (0)