Skip to content

Commit 5fa109c

Browse files
author
Niall Langley
committed
Added a timezone component to the filter by LastModified test to see if that is what causes the test to fail on the CI build
1 parent 2a69ad4 commit 5fa109c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataPipelineTools.Tests/DataLake/DataLakeServiceTests/GetItemsAsyncTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ public void Given_DirectoryPathWithIncorrectCaseAndIgnoreDirectoryCaseIsTrue_Whe
213213
new object[] { "raw/api", nameof(DataLakeItem.Url), "like:.+raw\\/api.+", 8}, // 6 files + 2 directories
214214
new object[] { "raw/api", nameof(DataLakeItem.IsDirectory), "eq:true", 2},
215215
new object[] { "raw/api", nameof(DataLakeItem.IsDirectory), "eq:false", 6},
216-
new object[] { "raw/api", nameof(DataLakeItem.LastModified), "ge:2021-01-04T14:00:00", 2},
216+
new object[] { "raw/api", nameof(DataLakeItem.LastModified), "ge:2021-01-04T14:00:00+00:00", 2},
217217
};
218218
[TestCaseSource(nameof(Filters))]
219219
public void Given_Filter_Should_ReturnRecordsMatchingFilter(string directory, string filterProperty, string filterExpression, int expectedFileCount)

0 commit comments

Comments
 (0)