Skip to content

Commit

Permalink
Merge pull request #4220 from vespa-engine/vekterli/add-missing-paren
Browse files Browse the repository at this point in the history
Add missing closing parenthesis in expression
  • Loading branch information
vekterli authored Oct 9, 2024
2 parents e2e8d40 + 97f6d42 commit 1ef61e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/search/parent_child/imported_fields_in_selections.rb
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def test_imported_fields_can_be_used_in_batch_remove_selections
assert_equal([], enumerate_docs_matching(remove_cond))
# Nothing else should be removed...!
assert_equal(['id:test:child::1', 'id:test:child::2', 'id:test:child::5'],
enumerate_docs_matching("not (#{remove_cond}"))
enumerate_docs_matching("not (#{remove_cond})"))
end

end
Expand Down

0 comments on commit 1ef61e5

Please sign in to comment.