From fb4fc463f016f090f61e467080aceb5e32ade672 Mon Sep 17 00:00:00 2001
From: Jake Taylor <jake@elixxir.io>
Date: Thu, 2 Jun 2022 13:18:26 -0500
Subject: [PATCH] fix pipeline

---
 auth/utils_test.go | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/auth/utils_test.go b/auth/utils_test.go
index a1b3291a1..4d6b50ade 100644
--- a/auth/utils_test.go
+++ b/auth/utils_test.go
@@ -32,6 +32,26 @@ type mockE2eHandler struct {
 	privKey *cyclic.Int
 }
 
+func (m mockE2eHandler) HasAuthenticatedChannel(partner *id.ID) bool {
+	panic("implement me")
+}
+
+func (m mockE2eHandler) FirstPartitionSize() uint {
+	panic("implement me")
+}
+
+func (m mockE2eHandler) SecondPartitionSize() uint {
+	panic("implement me")
+}
+
+func (m mockE2eHandler) PartitionSize(payloadIndex uint) uint {
+	panic("implement me")
+}
+
+func (m mockE2eHandler) PayloadSize() uint {
+	panic("implement me")
+}
+
 func (m mockE2eHandler) GetHistoricalDHPrivkey() *cyclic.Int {
 	return m.privKey
 }
-- 
GitLab