tests(ui): fix parseSchema test fixture

The schema fixture wasn't formatted quite right - doesn't affect the test but still.
This commit is contained in:
psychedelicious 2024-05-17 10:31:37 +10:00
parent 23ac340a3f
commit dd42a56084

View File

@ -611,31 +611,6 @@ const schema = {
type: 'object',
class: 'output',
},
VAEField: {
properties: {
vae: {
allOf: [
{
$ref: '#/components/schemas/ModelIdentifierField',
},
],
description: 'Info to load vae submodel',
},
seamless_axes: {
description: 'Axes("x" and "y") to which apply seamless',
items: {
type: 'string',
},
title: 'Seamless Axes',
type: 'array',
},
},
required: ['vae'],
title: 'VAEField',
type: 'object',
class: 'output',
},
},
UNetField: {
properties: {
unet: {
@ -811,4 +786,5 @@ const schema = {
class: 'output',
},
},
},
} as OpenAPIV3_1.Document;