broken tests

This commit is contained in:
Michael Shanks 2020-10-05 20:58:07 +01:00
parent daec40005a
commit f3c941a023
2 changed files with 3 additions and 3 deletions

View File

@ -180,7 +180,7 @@ describe("/models", () => {
key: "name", key: "name",
schema: { schema: {
name: { name: {
type: "text", type: "string",
constraints: { constraints: {
type: "string", type: "string",
}, },

View File

@ -69,13 +69,13 @@ describe("/views", () => {
filters: [], filters: [],
schema: { schema: {
name: { name: {
type: "text", type: "string",
constraints: { constraints: {
type: "string" type: "string"
}, },
}, },
description: { description: {
type: "text", type: "string",
constraints: { constraints: {
type: "string" type: "string"
}, },