Skip to content

Commit

Permalink
Addressing code review feedback...
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Cheng committed Apr 9, 2012
1 parent 8dd4620 commit 4d82414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static PropertyNameFilter propertyName(String value) {
return new PropertyNameFilter(value);
}

public static QueryStringFilter QueryString(String value) {
public static QueryStringFilter queryString(String value) {
return new QueryStringFilter(value);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ public void queryEntitiesWithFilterWorks() throws Exception {
{
// Act
QueryEntitiesResult result = service.queryEntities(table, new QueryEntitiesOptions().setFilter(Filter
.QueryString("RowKey eq 'queryEntitiesWithFilterWorks-3'")));
.queryString("RowKey eq 'queryEntitiesWithFilterWorks-3'")));

// Assert
assertNotNull(result);
Expand Down

0 comments on commit 4d82414

Please sign in to comment.