We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5032105 commit ed672e5Copy full SHA for ed672e5
subtree_test.go
@@ -12,6 +12,7 @@ import (
12
)
13
14
const expectedSizeFourMessage = "expected size to be 4, got %d"
15
+const expectedSizeEightMessage = "expected size to be 8, got %d"
16
17
func TestNewTree(t *testing.T) {
18
t.Run("invalid size", func(t *testing.T) {
@@ -307,7 +308,7 @@ func TestSubtreeGetMerkleProof(t *testing.T) {
307
308
require.NoError(t, err)
309
310
if st.Size() != 8 {
- t.Errorf(expectedSizeFourMessage, st.Size())
311
+ t.Errorf(expectedSizeEightMessage, st.Size())
312
}
313
314
txIDs := []string{
0 commit comments