Skip to content

Commit

Permalink
INDY-1914: Simplify test
Browse files Browse the repository at this point in the history
Signed-off-by: ArtObr <[email protected]>
  • Loading branch information
ArtObr committed Jan 10, 2019
1 parent abe2863 commit 1aea33e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions indy_node/test/schema/test_send_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,8 @@ def test_can_not_send_same_schema(looper, sdk_pool_handle,
def test_schema_maximum_attrib(looper, sdk_pool_handle,
sdk_wallet_trust_anchor):
attribs = []
string = randomString(NAME_FIELD_LIMIT)
for i in range(SCHEMA_ATTRIBUTES_LIMIT):
i = str(i)
attribs.append(string[:-len(i)] + i)
attribs.append(randomString(NAME_FIELD_LIMIT))

sdk_write_schema_and_check(
looper, sdk_pool_handle,
Expand Down

0 comments on commit 1aea33e

Please sign in to comment.