Skip to content

Commit

Permalink
quote missing required field
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinAlbs committed Jul 28, 2023
1 parent 84097bf commit 4baf28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libmongoc/tests/bsonutil/bson-parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ bson_parser_parse (bson_parser_t *parser, bson_t *in, bson_error_t *error)
{
if (!entry->optional && !entry->set) {
test_set_error (error,
"Required field %s was not found parsing: %s",
"Required field '%s' was not found parsing: %s",
entry->key,
tmp_json (in));
return false;
Expand Down

0 comments on commit 4baf28e

Please sign in to comment.