From bd3deae71b560084889f38a049a7f8534e690ed3 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Fri, 24 Nov 2023 09:02:02 +0100 Subject: [PATCH] Update trie_test.go --- trie/trie_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/trie/trie_test.go b/trie/trie_test.go index c32e6a6b70..c5bd3faf53 100644 --- a/trie/trie_test.go +++ b/trie/trie_test.go @@ -372,6 +372,9 @@ func TestRandomCases(t *testing.T) { // Instances of this test are created by Generate. type randTest []randTestStep +// compile-time interface check +var _ quick.Generator = (randTest)(nil) + type randTestStep struct { op int key []byte // for opUpdate, opDelete, opGet