From b9c610b7703f131795245030f9f2668afae209fb Mon Sep 17 00:00:00 2001 From: Lombiq Date: Wed, 6 Apr 2016 19:51:39 +0200 Subject: [PATCH] Orchard.Azure.Tests: Fixing a failing test case due to a change to fix a bug in AzureFileSystem.cs (8b66c9530f35df8d98c9de7463f127b087f5f10e) --- .../FileSystems/Media/AzureBlobStorageProviderTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Azure.Tests/FileSystems/Media/AzureBlobStorageProviderTests.cs b/src/Orchard.Azure.Tests/FileSystems/Media/AzureBlobStorageProviderTests.cs index 4235ee62b..e70b24fd4 100644 --- a/src/Orchard.Azure.Tests/FileSystems/Media/AzureBlobStorageProviderTests.cs +++ b/src/Orchard.Azure.Tests/FileSystems/Media/AzureBlobStorageProviderTests.cs @@ -291,7 +291,7 @@ namespace Orchard.Azure.Tests.FileSystems.Media { [Test] public void GetStoragePathShouldReturnNullIfPathIsNotLocal() { - var storagePath = _azureBlobStorageProvider.GetStoragePath("foo"); + var storagePath = _azureBlobStorageProvider.GetStoragePath("http://orchardproject.net/foo"); Assert.IsNull(storagePath); }