functional_tests: fix city spec tests failing due to too high level

This commit is contained in:
Crypto City 2021-07-05 16:33:54 +00:00
parent 7d55777ba9
commit ea37a84d86

View File

@ -5080,7 +5080,7 @@ class CCTest():
# can't add too many
rejected = False
try:
for s in [0, 1, 2, 3, 5, 6, 7, 8, 9]:
for s in [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]:
self.wallet[1].cc_add_city_specialization(1, s)
self.generate_blocks('TF1MMBg4zx18SnZC6oswCRB7DzdVeUKce5NdCMSWUHNY4wNvNhzmFj4WqZY2bFj8R1REAWR3qAH5zD7sjXyHz3tVayzHSswqymx', 1)
except: