Skip to content

Commit

Permalink
Allow 11 char symbols (#882)
Browse files Browse the repository at this point in the history
  • Loading branch information
xrn committed Jun 23, 2021
1 parent 3533f12 commit 0243fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ test('symbols should be six or less characters', function (t) {
const contract = contractMap[address]
const symbol = contract.symbol
if (symbol) {
t.notOk(symbol.length > 6, `symbol with more than 6 characters: "${symbol}"`)
t.notOk(symbol.length > 11, `symbol with more than 11 characters: "${symbol}"`)
}
})
t.end()
Expand Down

0 comments on commit 0243fb8

Please sign in to comment.