From 9173958f9c93837b250d2f1a0adea00b7438610a Mon Sep 17 00:00:00 2001 From: Andras Banki-Horvath Date: Mon, 29 Jun 2020 15:09:35 +0200 Subject: [PATCH] kvdb: s/hu/en/g --- channeldb/kvdb/etcd/readwrite_cursor_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/channeldb/kvdb/etcd/readwrite_cursor_test.go b/channeldb/kvdb/etcd/readwrite_cursor_test.go index 16dcc9df..bc457e7e 100644 --- a/channeldb/kvdb/etcd/readwrite_cursor_test.go +++ b/channeldb/kvdb/etcd/readwrite_cursor_test.go @@ -19,7 +19,7 @@ func TestReadCursorEmptyInterval(t *testing.T) { require.NoError(t, err) err = db.Update(func(tx walletdb.ReadWriteTx) error { - b, err := tx.CreateTopLevelBucket([]byte("alma")) + b, err := tx.CreateTopLevelBucket([]byte("apple")) require.NoError(t, err) require.NotNil(t, b) @@ -28,7 +28,7 @@ func TestReadCursorEmptyInterval(t *testing.T) { require.NoError(t, err) err = db.View(func(tx walletdb.ReadTx) error { - b := tx.ReadBucket([]byte("alma")) + b := tx.ReadBucket([]byte("apple")) require.NotNil(t, b) cursor := b.ReadCursor() @@ -70,7 +70,7 @@ func TestReadCursorNonEmptyInterval(t *testing.T) { } err = db.Update(func(tx walletdb.ReadWriteTx) error { - b, err := tx.CreateTopLevelBucket([]byte("alma")) + b, err := tx.CreateTopLevelBucket([]byte("apple")) require.NoError(t, err) require.NotNil(t, b) @@ -83,7 +83,7 @@ func TestReadCursorNonEmptyInterval(t *testing.T) { require.NoError(t, err) err = db.View(func(tx walletdb.ReadTx) error { - b := tx.ReadBucket([]byte("alma")) + b := tx.ReadBucket([]byte("apple")) require.NotNil(t, b) // Iterate from the front.