Fixed names of tests

This commit is contained in:
Jakub Matys 2018-06-27 12:38:03 +02:00
parent 7040853212
commit a7c128d806
6 changed files with 12 additions and 12 deletions

View File

@ -52,11 +52,11 @@ func TestBCashRPC_GetTransaction(t *testing.T) {
rpcTest.TestGetTransaction(t)
}
func TestBCashRPC_TestGetTransactionForMempool(t *testing.T) {
func TestBCashRPC_GetTransactionForMempool(t *testing.T) {
rpcTest.TestGetTransactionForMempool(t)
}
func TestBCashRPC_TestMempoolSync(t *testing.T) {
func TestBCashRPC_MempoolSync(t *testing.T) {
rpcTest.TestMempoolSync(t)
}

View File

@ -52,11 +52,11 @@ func TestBitcoinRPC_GetTransaction(t *testing.T) {
rpcTest.TestGetTransaction(t)
}
func TestBitcoinRPC_TestGetTransactionForMempool(t *testing.T) {
func TestBitcoinRPC_GetTransactionForMempool(t *testing.T) {
rpcTest.TestGetTransactionForMempool(t)
}
func TestBitcoinRPC_TestMempoolSync(t *testing.T) {
func TestBitcoinRPC_MempoolSync(t *testing.T) {
rpcTest.TestMempoolSync(t)
}

View File

@ -49,11 +49,11 @@ func TestDashRPC_GetTransaction(t *testing.T) {
rpcTest.TestGetTransaction(t)
}
func TestDashRPC_TestGetTransactionForMempool(t *testing.T) {
func TestDashRPC_GetTransactionForMempool(t *testing.T) {
rpcTest.TestGetTransactionForMempool(t)
}
func TestDashRPC_TestMempoolSync(t *testing.T) {
func TestDashRPC_MempoolSync(t *testing.T) {
rpcTest.TestMempoolSync(t)
}

View File

@ -52,13 +52,13 @@ func TestNamecoinRPC_GetTransaction(t *testing.T) {
rpcTest.TestGetTransaction(t)
}
func TestNamecoinRPC_TestGetTransactionForMempool(t *testing.T) {
func TestNamecoinRPC_GetTransactionForMempool(t *testing.T) {
// extra opcodes (name_new, name_firstupdate, name_update) aren't supported, so some transactions
// in mempool can't be parsed correctly
t.Skipf("Skipped because of instability")
}
func TestNamecoinRPC_TestMempoolSync(t *testing.T) {
func TestNamecoinRPC_MempoolSync(t *testing.T) {
rpcTest.TestMempoolSync(t)
}

View File

@ -52,11 +52,11 @@ func TestVertcoinRPC_GetTransaction(t *testing.T) {
rpcTest.TestGetTransaction(t)
}
func TestVertcoinRPC_TestGetTransactionForMempool(t *testing.T) {
func TestVertcoinRPC_GetTransactionForMempool(t *testing.T) {
rpcTest.TestGetTransactionForMempool(t)
}
func TestVertcoinRPC_TestMempoolSync(t *testing.T) {
func TestVertcoinRPC_MempoolSync(t *testing.T) {
rpcTest.TestMempoolSync(t)
}

View File

@ -49,11 +49,11 @@ func TestZCashRPC_GetTransaction(t *testing.T) {
rpcTest.TestGetTransaction(t)
}
func TestZCashRPC_TestGetTransactionForMempool(t *testing.T) {
func TestZCashRPC_GetTransactionForMempool(t *testing.T) {
rpcTest.TestGetTransactionForMempool(t)
}
func TestZCashRPC_TestMempoolSync(t *testing.T) {
func TestZCashRPC_MempoolSync(t *testing.T) {
rpcTest.TestMempoolSync(t)
}