From 0243fb8f11c6650f33dc059413b793575e3e36f2 Mon Sep 17 00:00:00 2001 From: Marcin Rabenda Date: Wed, 23 Jun 2021 12:35:45 +0200 Subject: [PATCH] Allow 11 char symbols (#882) --- test/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.js b/test/index.js index 4d60ac259a..a21479bd86 100644 --- a/test/index.js +++ b/test/index.js @@ -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()