From 09370a89aa1a09e74d621bb9b1043e6aad3b0d15 Mon Sep 17 00:00:00 2001 From: grandfather Date: Sat, 18 Jan 2025 15:53:49 +0100 Subject: [PATCH] Typo fix in the file testutils_test.go --- testutils_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testutils_test.go b/testutils_test.go index cf9aa4ec0..f9caffdf3 100644 --- a/testutils_test.go +++ b/testutils_test.go @@ -283,7 +283,7 @@ func setupMirrorForIterator(t *testing.T, config *iteratorTestConfig, tree *Muta return mirror } -// assertIterator confirms that the iterator returns the expected values desribed by mirror in the same order. +// assertIterator confirms that the iterator returns the expected values described by mirror in the same order. // mirror is a slice containing slices of the form [key, value]. In other words, key at index 0 and value at index 1. func assertIterator(t *testing.T, itr corestore.Iterator, mirror [][]string, ascending bool) { startIdx, endIdx := 0, len(mirror)-1