Skip to content

Commit

Permalink
Fix test string
Browse files Browse the repository at this point in the history
  • Loading branch information
ajlende committed Jul 17, 2024
1 parent 63edffd commit ea61881
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/integration/blocks-schema.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe( 'block.json schema', () => {
);
const ajv = new Ajv();

test( 'strictly adheres to the draft-04 meta schema', () => {
test( 'strictly adheres to the draft-07 meta schema', () => {
// Use ajv.compile instead of ajv.validateSchema to validate the schema
// because validateSchema only checks syntax, whereas, compile checks
// if the schema is semantically correct with strict mode.
Expand Down
2 changes: 1 addition & 1 deletion test/integration/theme-schema.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe( 'theme.json schema', () => {
allowMatchingProperties: true,
} );

it( 'strictly adheres to the draft-04 meta schema', () => {
it( 'strictly adheres to the draft-07 meta schema', () => {
// Use ajv.compile instead of ajv.validateSchema to validate the schema
// because validateSchema only checks syntax, whereas, compile checks
// if the schema is semantically correct with strict mode.
Expand Down

0 comments on commit ea61881

Please sign in to comment.