From d9cd215a6043ad27f49cb46cfc567b4788d0d743 Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 13 Oct 2016 13:48:18 -0400 Subject: [PATCH] set seed for strategy tests --- tests/unit/core/test_Strategy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/core/test_Strategy.py b/tests/unit/core/test_Strategy.py index 6d84a0f88..eecf860f9 100644 --- a/tests/unit/core/test_Strategy.py +++ b/tests/unit/core/test_Strategy.py @@ -7,6 +7,7 @@ from lbrynet.core.Offer import Offer from tests.mocks import DummyBlobAvailabilityTracker MAX_NEGOTIATION_TURNS = 10 +random.seed(12345) def get_random_sample(list_to_sample):