diff --git a/tests/transaction_test_util.go b/tests/transaction_test_util.go
index 85bf1fb0bd0d4fe8c01a801a0a4ba5fa1a51dba6..7aa16729271bf5c49afb43749d6387ca30892d52 100644
--- a/tests/transaction_test_util.go
+++ b/tests/transaction_test_util.go
@@ -80,8 +80,7 @@ func (tt *TransactionTest) Run(config *params.ChainConfig) error {
 		{"EIP158", types.NewEIP155Signer(config.ChainID), tt.EIP158, true, false},
 		{"Byzantium", types.NewEIP155Signer(config.ChainID), tt.Byzantium, true, false},
 		{"Constantinople", types.NewEIP155Signer(config.ChainID), tt.Constantinople, true, false},
-		//TODO! @holiman or @rjl493456442 : enable this after tests have been updated for Istanbul
-		//{"Istanbul", types.NewEIP155Signer(config.ChainID), tt.Istanbul, true, true},
+		{"Istanbul", types.NewEIP155Signer(config.ChainID), tt.Istanbul, true, true},
 	} {
 		sender, txhash, err := validateTx(tt.RLP, testcase.signer, testcase.isHomestead, testcase.isIstanbul)