Skip to content

Commit

Permalink
Add missing closing parenthesis in expression
Browse files Browse the repository at this point in the history
Initially missed because test was expected to fail, just not in
_this_ particular way...
  • Loading branch information
vekterli committed Oct 9, 2024
1 parent e2e8d40 commit 97f6d42
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 97f6d42

Please sign in to comment.