Skip to content

Commit

Permalink
fix(tests:schema): keyword length
Browse files Browse the repository at this point in the history
  • Loading branch information
mkucharz committed Mar 23, 2018
1 parent 9116c5d commit cb34c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tests/e2e/schema/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ describe('Schema', function () {
Validator.validateMainSchema(getSchema('invalid_keywords'))
assert()
} catch (err) {
assert(err.details[0].message.match(/should NOT be longer than 12 character/))
assert(err.details[0].message.match(/should NOT be longer than 32 character/))
}
})

Expand Down

0 comments on commit cb34c83

Please sign in to comment.