We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bfd014a + a3fac95 commit 14d0552Copy full SHA for 14d0552
src/UmbracoFileSystemProviders.Azure.Tests/AzureBlobFileSystemTestsBase.cs
@@ -8,6 +8,8 @@
8
// </summary>
9
// --------------------------------------------------------------------------------------------------------------------
10
11
+using System.Threading;
12
+
13
namespace Our.Umbraco.FileSystemProviders.Azure.Tests
14
{
15
using System;
@@ -419,6 +421,8 @@ public void TestGetLastModified()
419
421
// Assert
420
422
Assert.AreNotEqual(original, DateTimeOffset.MinValue);
423
424
+ Thread.Sleep(TimeSpan.FromSeconds(1.1));
425
426
// Act
427
provider.AddFile("1010/media.jpg", Stream.Null);
428
DateTimeOffset updated = provider.GetLastModified("1010/media.jpg");
0 commit comments