Skip to content

Commit

Permalink
[Service Bus] Remove .only in tests, fix tslint errors (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a authored Feb 20, 2019
1 parent b6b74d4 commit a1c7b8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ describe("Errors with non existing Queue/Topic/Subscription", async function():
});
});

describe.only("Errors after namespace.close()", function(): void {
describe("Errors after namespace.close()", function(): void {
const expectedErrorMsg = "The underlying AMQP connection is closed.";

let namespace: Namespace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async function sendOrders(): Promise<void> {
quantity: element.Quantity,
priority: `${element.Priority}`
},
partitionKey: "dummy" //Ensures all messages go to same parition to make peek work reliably
partitionKey: "dummy" // Ensures all messages go to same parition to make peek work reliably
};
await sender.send(message);
}
Expand Down

0 comments on commit a1c7b8e

Please sign in to comment.