{
  "runOn": [
    {
      "minServerVersion": "3.4.0",
      "maxServerVersion": "4.3.3"
    }
  ],
  "data": [
    {
      "_id": 1,
      "x": 11
    },
    {
      "_id": 2,
      "x": 22
    }
  ],
  "collection_name": "DeleteOne_hint",
  "tests": [
    {
      "description": "DeleteOne with hint string unsupported (server-side error)",
      "operations": [
        {
          "object": "collection",
          "name": "deleteOne",
          "arguments": {
            "filter": {
              "_id": 1
            },
            "hint": "_id_"
          },
          "error": true
        }
      ],
      "expectations": [
        {
          "command_started_event": {
            "command": {
              "delete": "DeleteOne_hint",
              "deletes": [
                {
                  "q": {
                    "_id": 1
                  },
                  "hint": "_id_",
                  "limit": 1
                }
              ]
            }
          }
        }
      ],
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1,
              "x": 11
            },
            {
              "_id": 2,
              "x": 22
            }
          ]
        }
      }
    },
    {
      "description": "DeleteOne with hint document unsupported (server-side error)",
      "operations": [
        {
          "object": "collection",
          "name": "deleteOne",
          "arguments": {
            "filter": {
              "_id": 1
            },
            "hint": {
              "_id": 1
            }
          },
          "error": true
        }
      ],
      "expectations": [
        {
          "command_started_event": {
            "command": {
              "delete": "DeleteOne_hint",
              "deletes": [
                {
                  "q": {
                    "_id": 1
                  },
                  "hint": {
                    "_id": 1
                  },
                  "limit": 1
                }
              ]
            }
          }
        }
      ],
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1,
              "x": 11
            },
            {
              "_id": 2,
              "x": 22
            }
          ]
        }
      }
    }
  ]
}
