Skip to content

Commit

Permalink
INDY-1292: fix base58 version in build scripts (#648)
Browse files Browse the repository at this point in the history
* fix base58 version in build scripts

Signed-off-by: ashcherbakov <[email protected]>

* fix test

Signed-off-by: ashcherbakov <[email protected]>
  • Loading branch information
ashcherbakov authored and andkononykhin committed Apr 25, 2018
1 parent caa2d0c commit b33f1d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-scripts/ubuntu-1604/build-3rd-parties.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ build_rocksdb_deb 5.8.8

build_from_pypi ioflo 1.5.4
build_from_pypi orderedset 2.0
build_from_pypi base58 0.2.4
build_from_pypi base58 0.2.5
build_from_pypi prompt-toolkit 0.57
build_from_pypi rlp 0.5.1
build_from_pypi sha3 0.2.1
Expand Down
4 changes: 2 additions & 2 deletions plenum/test/monitoring/test_request_time_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_request_tracker_order_by_master_makes_request_ordered_and_returns_time_
tto = req_tracker.order(0, req[0], req[1], now + 5)

assert req not in [req for req, _ in req_tracker.unordered()]
assert tto == 5
assert int(tto) == 5


def test_request_tracker_order_by_backup_returns_time_to_order():
Expand All @@ -38,7 +38,7 @@ def test_request_tracker_order_by_backup_returns_time_to_order():
tto = req_tracker.order(1, req[0], req[1], now + 5)

assert req in [req for req, _ in req_tracker.unordered()]
assert tto == 5
assert int(tto) == 5


def test_request_tracker_deletes_request_only_when_it_is_ordered_by_all_instances():
Expand Down

0 comments on commit b33f1d7

Please sign in to comment.