Skip to content

Commit

Permalink
[Service Bus] Use string for messageId in tests to avoid error about …
Browse files Browse the repository at this point in the history
…non whole integers (#1306)
  • Loading branch information
ramya-rao-a authored Feb 20, 2019
1 parent b0e6fe3 commit de761c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async function sendOrders(): Promise<void> {
const element = data[index];
const message: SendableMessageInfo = {
body: "",
messageId: Math.random(),
messageId: `messageId: ${Math.random()}`,
correlationId: `${element.Priority}`,
label: `${element.Color}`,
userProperties: {
Expand Down

0 comments on commit de761c9

Please sign in to comment.