Skip to content

Commit 1fc249d

Browse files
committed
tests: update tests
1 parent 8b00e50 commit 1fc249d

File tree

1 file changed

+3
-3
lines changed
  • packages/blocks/src/api/raw-handling/test

1 file changed

+3
-3
lines changed

packages/blocks/src/api/raw-handling/test/utils.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ describe( 'getBlockContentSchema', () => {
199199
type: 'raw',
200200
schema: {
201201
pre: {
202-
attributes: [ 'data-chicken' ],
202+
attributes: [ 'data-one' ],
203203
children: myContentSchema,
204204
},
205205
},
@@ -209,7 +209,7 @@ describe( 'getBlockContentSchema', () => {
209209
type: 'raw',
210210
schema: {
211211
pre: {
212-
attributes: [ 'data-ribs', 'class' ],
212+
attributes: [ 'data-two', 'class' ],
213213
children: myContentSchema,
214214
classes: [ 'my-class', 'another-class' ],
215215
},
@@ -219,7 +219,7 @@ describe( 'getBlockContentSchema', () => {
219219
const output = {
220220
pre: {
221221
children: myContentSchema,
222-
attributes: [ 'data-chicken', 'data-ribs', 'class' ],
222+
attributes: [ 'data-one', 'data-two', 'class' ],
223223
classes: [ 'my-class', 'another-class' ],
224224
},
225225
};

0 commit comments

Comments
 (0)