Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solana/indexer/locker/indexer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

func TestHandleUpdate_SlotCheckpoint(t *testing.T) {
pool := database.CreateTestDatabase(t, "test_solana_indexer_dbc")
pool := database.CreateTestDatabase(t, "test_solana_indexer_locker")
rpcClient := fake_rpc_client.FakeRpcClient{}
logger := zap.NewNop()

Expand Down Expand Up @@ -46,7 +46,7 @@ func TestHandleUpdate_SlotCheckpoint(t *testing.T) {
}

func TestHandleUpdate_VestingEscrow(t *testing.T) {
pool := database.CreateTestDatabase(t, "test_solana_indexer_dbc")
pool := database.CreateTestDatabase(t, "test_solana_indexer_locker")
rpcClient := fake_rpc_client.FakeRpcClient{}
logger := zap.NewNop()

Expand Down
1 change: 1 addition & 0 deletions sql/02_test_template.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ CREATE DATABASE test_indexer TEMPLATE postgres;
CREATE DATABASE test_solana_indexer_common TEMPLATE postgres;
CREATE DATABASE test_solana_indexer_token TEMPLATE postgres;
CREATE DATABASE test_solana_indexer_dbc TEMPLATE postgres;
CREATE DATABASE test_solana_indexer_locker TEMPLATE postgres;
CREATE DATABASE test_solana_indexer_damm_v2 TEMPLATE postgres;
CREATE DATABASE test_solana_indexer_program TEMPLATE postgres;
Loading