fix integer division in testcase for py3
This commit is contained in:
parent
89e46d87bd
commit
84b9a7d101
@ -319,7 +319,7 @@ def test_split_shard():
|
|||||||
sum([shard['SequenceNumberRange']['EndingSequenceNumber'] for shard in shards]).should.equal(99)
|
sum([shard['SequenceNumberRange']['EndingSequenceNumber'] for shard in shards]).should.equal(99)
|
||||||
|
|
||||||
shard_range = shards[0]['HashKeyRange']
|
shard_range = shards[0]['HashKeyRange']
|
||||||
new_starting_hash = (int(shard_range['EndingHashKey'])+int(shard_range['StartingHashKey'])) / 2
|
new_starting_hash = (int(shard_range['EndingHashKey'])+int(shard_range['StartingHashKey'])) // 2
|
||||||
conn.split_shard("my_stream", shards[0]['ShardId'], str(new_starting_hash))
|
conn.split_shard("my_stream", shards[0]['ShardId'], str(new_starting_hash))
|
||||||
|
|
||||||
stream_response = conn.describe_stream(stream_name)
|
stream_response = conn.describe_stream(stream_name)
|
||||||
@ -330,7 +330,7 @@ def test_split_shard():
|
|||||||
sum([shard['SequenceNumberRange']['EndingSequenceNumber'] for shard in shards]).should.equal(99)
|
sum([shard['SequenceNumberRange']['EndingSequenceNumber'] for shard in shards]).should.equal(99)
|
||||||
|
|
||||||
shard_range = shards[2]['HashKeyRange']
|
shard_range = shards[2]['HashKeyRange']
|
||||||
new_starting_hash = (int(shard_range['EndingHashKey'])+int(shard_range['StartingHashKey'])) / 2
|
new_starting_hash = (int(shard_range['EndingHashKey'])+int(shard_range['StartingHashKey'])) // 2
|
||||||
conn.split_shard("my_stream", shards[2]['ShardId'], str(new_starting_hash))
|
conn.split_shard("my_stream", shards[2]['ShardId'], str(new_starting_hash))
|
||||||
|
|
||||||
stream_response = conn.describe_stream(stream_name)
|
stream_response = conn.describe_stream(stream_name)
|
||||||
|
Loading…
Reference in New Issue
Block a user