File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/blocks/src/api/raw-handling/test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ describe( 'getBlockContentSchema', () => {
199
199
type : 'raw' ,
200
200
schema : {
201
201
pre : {
202
- attributes : [ 'data-chicken ' ] ,
202
+ attributes : [ 'data-one ' ] ,
203
203
children : myContentSchema ,
204
204
} ,
205
205
} ,
@@ -209,7 +209,7 @@ describe( 'getBlockContentSchema', () => {
209
209
type : 'raw' ,
210
210
schema : {
211
211
pre : {
212
- attributes : [ 'data-ribs ' , 'class' ] ,
212
+ attributes : [ 'data-two ' , 'class' ] ,
213
213
children : myContentSchema ,
214
214
classes : [ 'my-class' , 'another-class' ] ,
215
215
} ,
@@ -219,7 +219,7 @@ describe( 'getBlockContentSchema', () => {
219
219
const output = {
220
220
pre : {
221
221
children : myContentSchema ,
222
- attributes : [ 'data-chicken ' , 'data-ribs ' , 'class' ] ,
222
+ attributes : [ 'data-one ' , 'data-two ' , 'class' ] ,
223
223
classes : [ 'my-class' , 'another-class' ] ,
224
224
} ,
225
225
} ;
You can’t perform that action at this time.
0 commit comments