@@ -213,7 +213,7 @@ public void Given_DirectoryPathWithIncorrectCaseAndIgnoreDirectoryCaseIsTrue_Whe
213
213
new object [ ] { "raw/api" , nameof ( DataLakeItem . Url ) , "like:.+raw\\ /api.+" , 8 } , // 6 files + 2 directories
214
214
new object [ ] { "raw/api" , nameof ( DataLakeItem . IsDirectory ) , "eq:true" , 2 } ,
215
215
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 } ,
217
217
} ;
218
218
[ TestCaseSource ( nameof ( Filters ) ) ]
219
219
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
224
224
225
225
var result = Sut . GetItemsAsync ( DatalakeConfig , itemsConfig ) . Result . ToObject < GetItemsResponse > ( ) ;
226
226
227
- Logger . LogInformation ( $ "Results JSON:\n { JsonConvert . SerializeObject ( result , Formatting . Indented ) } ") ;
228
-
229
227
Assert . That ( result . FileCount , Is . EqualTo ( expectedFileCount ) ) ;
230
228
Assert . That ( result . Files , Has . Count . EqualTo ( expectedFileCount ) ) ;
231
229
}
@@ -237,7 +235,6 @@ public void Given_Filter_Should_ReturnRecordsMatchingFilter(string directory, st
237
235
new object [ ] { "raw/api/jan" , "Some invalid property" , "ne:delta_extract_4.json" } ,
238
236
new object [ ] { "raw/api/jan" , string . Empty , "ne:delta_extract_4.json" } ,
239
237
new object [ ] { "raw/api/jan" , null , "ne:delta_extract_4.json" } ,
240
-
241
238
new object [ ] { "raw/api/jan" , nameof ( DataLakeItem . Name ) , string . Empty } ,
242
239
new object [ ] { "raw/api/jan" , nameof ( DataLakeItem . Name ) , null } ,
243
240
0 commit comments