@@ -45,7 +45,7 @@ def test_push0(fork):
4545 pre [addr_1 ] = Account (code = code )
4646 post [addr_1 ] = Account (storage = {0x00 : 0x01 })
4747
48- yield StateTest (env = env , pre = pre , post = post , txs = [tx ], name = "key_sstore" )
48+ yield StateTest (env = env , pre = pre , post = post , txs = [tx ], tag = "key_sstore" )
4949
5050 """
5151 Test case 2: Fill stack with PUSH0, then OR all values and save using
@@ -58,7 +58,7 @@ def test_push0(fork):
5858 pre [addr_1 ] = Account (code = code )
5959 post [addr_1 ] = Account (storage = {0x00 : 0x01 })
6060
61- yield StateTest (env = env , pre = pre , post = post , txs = [tx ], name = "fill_stack" )
61+ yield StateTest (env = env , pre = pre , post = post , txs = [tx ], tag = "fill_stack" )
6262
6363 """
6464 Test case 3: Stack overflow by using PUSH0 1025 times
@@ -70,7 +70,7 @@ def test_push0(fork):
7070 post [addr_1 ] = Account (storage = {0x00 : 0x00 })
7171
7272 yield StateTest (
73- env = env , pre = pre , post = post , txs = [tx ], name = "stack_overflow"
73+ env = env , pre = pre , post = post , txs = [tx ], tag = "stack_overflow"
7474 )
7575
7676 """
@@ -84,7 +84,7 @@ def test_push0(fork):
8484 post [addr_1 ] = Account (storage = {0x00 : 0x02 , 0x01 : 0x00 })
8585
8686 yield StateTest (
87- env = env , pre = pre , post = post , txs = [tx ], name = "storage_overwrite"
87+ env = env , pre = pre , post = post , txs = [tx ], tag = "storage_overwrite"
8888 )
8989
9090 """
@@ -114,7 +114,7 @@ def test_push0(fork):
114114 post [addr_1 ] = Account (storage = {0x00 : 0x01 , 0x01 : 0xFF })
115115
116116 yield StateTest (
117- env = env , pre = pre , post = post , txs = [tx ], name = "during_staticcall"
117+ env = env , pre = pre , post = post , txs = [tx ], tag = "during_staticcall"
118118 )
119119
120120 del pre [addr_2 ]
@@ -137,7 +137,7 @@ def test_push0(fork):
137137 post [addr_1 ] = Account (storage = {0x00 : 0x01 })
138138
139139 yield StateTest (
140- env = env , pre = pre , post = post , txs = [tx ], name = "before_jumpdest"
140+ env = env , pre = pre , post = post , txs = [tx ], tag = "before_jumpdest"
141141 )
142142
143143 """
@@ -151,4 +151,4 @@ def test_push0(fork):
151151 pre [addr_1 ] = Account (code = code )
152152 post [addr_1 ] = Account (storage = {0x00 : 0x02 })
153153
154- yield StateTest (env = env , pre = pre , post = post , txs = [tx ], name = "gas_cost" )
154+ yield StateTest (env = env , pre = pre , post = post , txs = [tx ], tag = "gas_cost" )
0 commit comments