From c5cb214f689e5c34bf487daa8eb4234d6e3237a7 Mon Sep 17 00:00:00 2001 From: Javier Peletier Date: Mon, 8 Oct 2018 10:57:38 +0200 Subject: swarm/storage/feed: Expose MaxUpdateDataLength constant (#17858) --- swarm/storage/feed/update_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'swarm/storage/feed/update_test.go') diff --git a/swarm/storage/feed/update_test.go b/swarm/storage/feed/update_test.go index 4007223c6..24c09b361 100644 --- a/swarm/storage/feed/update_test.go +++ b/swarm/storage/feed/update_test.go @@ -35,7 +35,7 @@ func TestUpdateLengthCheck(t *testing.T) { testBinarySerializerLengthCheck(t, getTestFeedUpdate()) // Test fail if update is too big update := getTestFeedUpdate() - update.data = make([]byte, maxUpdateDataLength+100) + update.data = make([]byte, MaxUpdateDataLength+100) serialized := make([]byte, update.binaryLength()) if err := update.binaryPut(serialized); err == nil { t.Fatal("Expected update.binaryPut to fail since update is too big") -- cgit v1.2.3