From 653b444b8aec7ff17a6ef91dcadbe76b9ba3e164 Mon Sep 17 00:00:00 2001 From: josh <josh@elixxir.io> Date: Wed, 26 May 2021 13:27:55 -0700 Subject: [PATCH] Fix broken test --- network/rounds/utils_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/network/rounds/utils_test.go b/network/rounds/utils_test.go index 25b21c461..479995d83 100644 --- a/network/rounds/utils_test.go +++ b/network/rounds/utils_test.go @@ -13,7 +13,9 @@ import ( "gitlab.com/elixxir/client/network/message" "gitlab.com/elixxir/client/storage" pb "gitlab.com/elixxir/comms/mixmessages" + "gitlab.com/elixxir/crypto/fastRNG" "gitlab.com/xx_network/comms/connect" + "gitlab.com/xx_network/crypto/csprng" "gitlab.com/xx_network/primitives/id" "gitlab.com/xx_network/primitives/ndf" "testing" @@ -29,6 +31,7 @@ func newManager(face interface{}) *Manager { Internal: internal.Internal{ Session: sess1, TransmissionID: sess1.GetUser().TransmissionID, + Rng: fastRNG.NewStreamGenerator(1, 1, csprng.NewSystemRNG), }, } return testManager -- GitLab