@@ -37,7 +37,6 @@ public LegacyFilterParseTests()
3737 [ InlineData ( "filter[author]" , "some" , "Attribute 'author' does not exist on resource 'blogPosts'." ) ]
3838 [ InlineData ( "filter[author.posts]" , "some" , "Field 'posts' in 'author.posts' must be an attribute or a to-one relationship on resource 'webAccounts'." ) ]
3939 [ InlineData ( "filter[unknown.id]" , "some" , "Relationship 'unknown' in 'unknown.id' does not exist on resource 'blogPosts'." ) ]
40- [ InlineData ( "filter[author]" , " " , "Unexpected whitespace." ) ]
4140 [ InlineData ( "filter" , "expr:equals(some,'other')" , "Field 'some' does not exist on resource 'blogPosts'." ) ]
4241 [ InlineData ( "filter" , "expr:equals(author,'Joe')" , "Attribute 'author' does not exist on resource 'blogPosts'." ) ]
4342 [ InlineData ( "filter" , "expr:has(author)" , "Relationship 'author' must be a to-many relationship on resource 'blogPosts'." ) ]
@@ -77,6 +76,7 @@ public void Reader_Read_Fails(string parameterName, string parameterValue, strin
7776 [ InlineData ( "filter[caption]" , "unknown:some" , "equals(caption,'unknown:some')" ) ]
7877 [ InlineData ( "filter[author.userName]" , "Jack" , "equals(author.userName,'Jack')" ) ]
7978 [ InlineData ( "filter" , "expr:equals(caption,'some')" , "equals(caption,'some')" ) ]
79+ [ InlineData ( "filter" , "expr:equals(caption,' ')" , "equals(caption,' ')" ) ]
8080 [ InlineData ( "filter" , "expr:equals(author,null)" , "equals(author,null)" ) ]
8181 [ InlineData ( "filter" , "expr:has(author.posts)" , "has(author.posts)" ) ]
8282 [ InlineData ( "filter" , "expr:equals(count(author.posts),'1')" , "equals(count(author.posts),'1')" ) ]
0 commit comments