Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove fixed issue link and clean up integration test provider setup #3052

Merged
merged 7 commits into from
Jul 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add todo for failing projection test
  • Loading branch information
chilagrow committed Jul 14, 2023
commit 50f885da5b30465dfda9326777b6531096460a25
5 changes: 4 additions & 1 deletion integration/query_projection_compat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@ func TestQueryProjectionCompat(t *testing.T) {
func TestQueryProjectionPositionalOperatorCompat(t *testing.T) {
t.Parallel()

// TODO https://github.com/FerretDB/FerretDB/issues/3053
providers := shareddata.AllProviders().Remove(shareddata.ArrayAndDocuments)

testCases := map[string]queryCompatTestCase{
"IDFilter": {
// it returns error only if collection contains a doc that matches the filter
Expand Down Expand Up @@ -341,5 +344,5 @@ func TestQueryProjectionPositionalOperatorCompat(t *testing.T) {
},
}

testQueryCompat(t, testCases)
testQueryCompatWithProviders(t, providers, testCases)
}