Skip to content

Commit

Permalink
Changed Test's Query Argument As Suggested In PR Comment
Browse files Browse the repository at this point in the history
Signed-off-by: GabeFernandez310 <[email protected]>
  • Loading branch information
GabeFernandez310 committed Nov 1, 2022
1 parent 7add05f commit ef2f4c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -491,9 +491,9 @@ void simple_query_string_expression_two_fields() {
void query_expression() {
assertAnalyzeEqual(
dsl.query(
dsl.namedArgument("query", DSL.literal("query_value"))),
dsl.namedArgument("query", DSL.literal("field:query"))),
AstDSL.function("query",
AstDSL.unresolvedArg("query", stringLiteral("query_value"))));
AstDSL.unresolvedArg("query", stringLiteral("field:query"))));
}

@Test
Expand Down

0 comments on commit ef2f4c9

Please sign in to comment.