From 64270f4a60b8d3b8a661b5b4f33957b8623f5f6d Mon Sep 17 00:00:00 2001
From: Benjamin Wenger <ben@elixxir.ioo>
Date: Mon, 19 Sep 2022 09:43:24 -0700
Subject: [PATCH] all tests pass in channels

---
 channels/joinedChannel_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/channels/joinedChannel_test.go b/channels/joinedChannel_test.go
index 0e1c812b4..2da31d171 100644
--- a/channels/joinedChannel_test.go
+++ b/channels/joinedChannel_test.go
@@ -446,7 +446,7 @@ func Test_makeJoinedChannelKey_Consistency(t *testing.T) {
 // tests run quicker.
 func newTestChannel(name, description string, rng csprng.Source) (
 	*cryptoBroadcast.Channel, rsa.PrivateKey, error) {
-	c, pk, err := cryptoBroadcast.NewChannel(name, description, 1000, rng)
+	c, pk, err := cryptoBroadcast.NewChannelVariableKeyUnsafe(name, description, 1000, 512, rng)
 	return c, pk, err
 }
 
-- 
GitLab