diff --git a/pkg/vm/stack/stack_test.go b/pkg/vm/stack/stack_test.go index 148931a5a..2241782a2 100644 --- a/pkg/vm/stack/stack_test.go +++ b/pkg/vm/stack/stack_test.go @@ -51,7 +51,7 @@ func TestStackPushPop(t *testing.T) { assert.Equal(t, true, item.Equal(a)) // We should get an error as there are nomore items left to pop - stackElement, err = testStack.Pop() + _, err = testStack.Pop() assert.NotNil(t, err) }