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 TODO comment for closed issue #2573

Merged
merged 10 commits into from
May 10, 2023
Prev Previous commit
Next Next commit
fix: removed todo tag for closed issue
  • Loading branch information
adetunjii committed May 6, 2023
commit 9b978c3f544bf62bf3f0fc9f6d2309192ed17cec
2 changes: 0 additions & 2 deletions integration/update_field_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ func TestUpdateFieldSet(t *testing.T) {
alt string
}{
"ArrayNil": {
// TODO remove https://github.com/FerretDB/FerretDB/issues/1662
id: "string",
update: bson.D{{"$set", bson.D{{"v", bson.A{nil}}}}},
expected: bson.D{{"_id", "string"}, {"v", bson.A{nil}}},
Expand All @@ -50,7 +49,6 @@ func TestUpdateFieldSet(t *testing.T) {
},
},
"SetSameValueInt": {
// TODO remove https://github.com/FerretDB/FerretDB/issues/1662
id: "int32",
update: bson.D{{"$set", bson.D{{"v", int32(42)}}}},
expected: bson.D{{"_id", "int32"}, {"v", int32(42)}},
Expand Down