From 0455edc237ad8103ecff82c4c4bb8a03d4f19f26 Mon Sep 17 00:00:00 2001 From: Dmytro Sukhyi Date: Thu, 26 May 2022 16:31:05 +0300 Subject: [PATCH] remove test for removed method --- circuits_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/circuits_test.go b/circuits_test.go index 628cd4d..8133882 100644 --- a/circuits_test.go +++ b/circuits_test.go @@ -2,7 +2,6 @@ package circuits import ( "encoding/json" - "fmt" "math/big" "testing" @@ -40,11 +39,3 @@ func TestUnmarshalCircuitOutput_Err(t *testing.T) { assert.Equal(t, err, ErrorCircuitIDNotFound) } - -func TestGetVerificationKey(t *testing.T) { - - got, err := GetVerificationKey(AuthCircuitID) - assert.NoError(t, err) - - fmt.Println(string(got)) -}