Fixed the test cases for the change that table service error code has been changed for specific REST APIs

This commit is contained in:
hasonmsft 2016-12-20 10:40:10 +08:00
Родитель d7a37ab026
Коммит d46e72bcfa
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -481,7 +481,7 @@ describe('batchserviceclient-tests', function () {
tableService.executeBatch(tableName1, batch, function (error, operationResponses, response) {
assert.notEqual(error, null);
assert.equal(error.code, 'InvalidInput');
assert.equal(error.code, 'InvalidDuplicateRow');
assert.equal(operationResponses, null);
assert.equal(response.isSuccessful, false);
assert.equal(response.statusCode, HttpConstants.HttpResponseCodes.BadRequest);