aboutsummaryrefslogtreecommitdiffstats
path: root/tests/transaction_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/transaction_test.go')
-rw-r--r--tests/transaction_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/transaction_test.go b/tests/transaction_test.go
index 41a20a1bb..70aa65cdd 100644
--- a/tests/transaction_test.go
+++ b/tests/transaction_test.go
@@ -6,21 +6,21 @@ import (
)
func TestTransactions(t *testing.T) {
- err := RunTransactionTests(filepath.Join(transactionTestDir, "ttTransactionTest.json"))
+ err := RunTransactionTests(filepath.Join(transactionTestDir, "ttTransactionTest.json"), TransSkipTests)
if err != nil {
t.Fatal(err)
}
}
func TestWrongRLPTransactions(t *testing.T) {
- err := RunTransactionTests(filepath.Join(transactionTestDir, "ttWrongRLPTransaction.json"))
+ err := RunTransactionTests(filepath.Join(transactionTestDir, "ttWrongRLPTransaction.json"), TransSkipTests)
if err != nil {
t.Fatal(err)
}
}
func Test10MBtx(t *testing.T) {
- err := RunTransactionTests(filepath.Join(transactionTestDir, "tt10mbDataField.json"))
+ err := RunTransactionTests(filepath.Join(transactionTestDir, "tt10mbDataField.json"), TransSkipTests)
if err != nil {
t.Fatal(err)
}