@@ -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+00:00 " , 2 } ,
216+ new object [ ] { "raw/api" , nameof ( DataLakeItem . LastModified ) , "ge:2021-01-04T14:00:00" , 2 } ,
217217 } ;
218218 [ TestCaseSource ( nameof ( Filters ) ) ]
219219 public void Given_Filter_Should_ReturnRecordsMatchingFilter ( string directory , string filterProperty , string filterExpression , int expectedFileCount )
@@ -224,8 +224,6 @@ public void Given_Filter_Should_ReturnRecordsMatchingFilter(string directory, st
224224
225225 var result = Sut . GetItemsAsync ( DatalakeConfig , itemsConfig ) . Result . ToObject < GetItemsResponse > ( ) ;
226226
227- Logger . LogInformation ( $ "Results JSON:\n { JsonConvert . SerializeObject ( result , Formatting . Indented ) } ") ;
228-
229227 Assert . That ( result . FileCount , Is . EqualTo ( expectedFileCount ) ) ;
230228 Assert . That ( result . Files , Has . Count . EqualTo ( expectedFileCount ) ) ;
231229 }
@@ -237,7 +235,6 @@ public void Given_Filter_Should_ReturnRecordsMatchingFilter(string directory, st
237235 new object [ ] { "raw/api/jan" , "Some invalid property" , "ne:delta_extract_4.json" } ,
238236 new object [ ] { "raw/api/jan" , string . Empty , "ne:delta_extract_4.json" } ,
239237 new object [ ] { "raw/api/jan" , null , "ne:delta_extract_4.json" } ,
240-
241238 new object [ ] { "raw/api/jan" , nameof ( DataLakeItem . Name ) , string . Empty } ,
242239 new object [ ] { "raw/api/jan" , nameof ( DataLakeItem . Name ) , null } ,
243240
0 commit comments