Skip to content

Commit

Permalink
[Service Bus] Fix test failure in the canary region (#11588)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshaNalluru authored Oct 1, 2020
1 parent 4c35fb0 commit 1992667
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sdk/servicebus/service-bus/test/sendBatch.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
getRandomTestClientTypeWithSessions,
getRandomTestClientTypeWithNoSessions
} from "./utils/testutils2";
import { ServiceBusSender } from "../src/sender";
import { ServiceBusSender, ServiceBusSenderImpl } from "../src/sender";
import { ConditionErrorNameMapper } from "@azure/core-amqp";

describe("Send Batch", () => {
Expand Down Expand Up @@ -411,9 +411,10 @@ describe("Send Batch", () => {
try {
await sender.createBatch({ maxSizeInBytes });
} catch (error) {
const maxSize = await (sender as ServiceBusSenderImpl)["_sender"].getMaxMessageSize();
should.equal(
error.message,
`Max message size (${maxSizeInBytes} bytes) is greater than maximum message size (262144 bytes) on the AMQP sender link.`,
`Max message size (${maxSizeInBytes} bytes) is greater than maximum message size (${maxSize} bytes) on the AMQP sender link.`,
"Unexpected error message when tried to create a batch of size > maximum message size."
);
errorIsThrown = true;
Expand Down

0 comments on commit 1992667

Please sign in to comment.