From 76c7a458b1bd47e81c0573470d4ece9562a6ca8c Mon Sep 17 00:00:00 2001 From: Jesse Squire Date: Mon, 8 Jun 2020 09:15:00 -0400 Subject: [PATCH] [Event Hubs Client] Fix Test Environment Typo The focus of these changes is to fix a typo on the constructor of the StorageTestEnvironment, which initializes the base class with an incorrect service directory name. --- .../tests/Infrastructure/StorageTestEnvironment.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 sdk/eventhub/Azure.Messaging.EventHubs.Processor/tests/Infrastructure/StorageTestEnvironment.cs diff --git a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/tests/Infrastructure/StorageTestEnvironment.cs b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/tests/Infrastructure/StorageTestEnvironment.cs old mode 100755 new mode 100644 index 98b5edfedf62..c5b0e7e31866 --- a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/tests/Infrastructure/StorageTestEnvironment.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/tests/Infrastructure/StorageTestEnvironment.cs @@ -58,7 +58,7 @@ public class StorageTestEnvironment: TestEnvironment /// Initializes a new instance of the class. /// /// - public StorageTestEnvironment() : base("eventhubs") + public StorageTestEnvironment() : base("eventhub") { ActiveStorageAccount = new Lazy(EnsureStorageAccount, LazyThreadSafetyMode.ExecutionAndPublication); }