|
43 | 43 | pytestmark = pytest.mark.valid_from("Amsterdam")
|
44 | 44 |
|
45 | 45 |
|
46 |
| -@pytest.mark.parametrize("fails_at_sstore", [True, False]) |
| 46 | +@pytest.mark.parametrize( |
| 47 | + "fails_at_sstore", [True, False], ids=["oog_at_sstore", "successful_sstore"] |
| 48 | +) |
47 | 49 | def test_bal_sstore_and_oog(
|
48 | 50 | pre: Alloc,
|
49 | 51 | blockchain_test: BlockchainTestFiller,
|
@@ -114,7 +116,7 @@ def test_bal_sstore_and_oog(
|
114 | 116 | )
|
115 | 117 |
|
116 | 118 |
|
117 |
| -@pytest.mark.parametrize("fails_at_sload", [True, False]) |
| 119 | +@pytest.mark.parametrize("fails_at_sload", [True, False], ids=["oog_at_sload", "successful_sload"]) |
118 | 120 | def test_bal_sload_and_oog(
|
119 | 121 | pre: Alloc,
|
120 | 122 | blockchain_test: BlockchainTestFiller,
|
@@ -177,7 +179,9 @@ def test_bal_sload_and_oog(
|
177 | 179 | )
|
178 | 180 |
|
179 | 181 |
|
180 |
| -@pytest.mark.parametrize("fails_at_balance", [True, False]) |
| 182 | +@pytest.mark.parametrize( |
| 183 | + "fails_at_balance", [True, False], ids=["oog_at_balance", "successful_balance"] |
| 184 | +) |
181 | 185 | def test_bal_balance_and_oog(
|
182 | 186 | pre: Alloc,
|
183 | 187 | blockchain_test: BlockchainTestFiller,
|
@@ -240,7 +244,9 @@ def test_bal_balance_and_oog(
|
240 | 244 | )
|
241 | 245 |
|
242 | 246 |
|
243 |
| -@pytest.mark.parametrize("fails_at_extcodesize", [True, False]) |
| 247 | +@pytest.mark.parametrize( |
| 248 | + "fails_at_extcodesize", [True, False], ids=["oog_at_extcodesize", "successful_extcodesize"] |
| 249 | +) |
244 | 250 | def test_bal_extcodesize_and_oog(
|
245 | 251 | pre: Alloc,
|
246 | 252 | blockchain_test: BlockchainTestFiller,
|
@@ -307,7 +313,7 @@ def test_bal_extcodesize_and_oog(
|
307 | 313 | )
|
308 | 314 |
|
309 | 315 |
|
310 |
| -@pytest.mark.parametrize("fails_at_call", [True, False]) |
| 316 | +@pytest.mark.parametrize("fails_at_call", [True, False], ids=["oog_at_call", "successful_call"]) |
311 | 317 | def test_bal_call_and_oog(
|
312 | 318 | pre: Alloc,
|
313 | 319 | blockchain_test: BlockchainTestFiller,
|
@@ -375,7 +381,9 @@ def test_bal_call_and_oog(
|
375 | 381 | )
|
376 | 382 |
|
377 | 383 |
|
378 |
| -@pytest.mark.parametrize("fails_at_delegatecall", [True, False]) |
| 384 | +@pytest.mark.parametrize( |
| 385 | + "fails_at_delegatecall", [True, False], ids=["oog_at_delegatecall", "successful_delegatecall"] |
| 386 | +) |
379 | 387 | def test_bal_delegatecall_and_oog(
|
380 | 388 | pre: Alloc,
|
381 | 389 | blockchain_test: BlockchainTestFiller,
|
@@ -448,7 +456,9 @@ def test_bal_delegatecall_and_oog(
|
448 | 456 | )
|
449 | 457 |
|
450 | 458 |
|
451 |
| -@pytest.mark.parametrize("fails_at_extcodecopy", [True, False]) |
| 459 | +@pytest.mark.parametrize( |
| 460 | + "fails_at_extcodecopy", [True, False], ids=["oog_at_extcodecopy", "successful_extcodecopy"] |
| 461 | +) |
452 | 462 | def test_bal_extcodecopy_and_oog(
|
453 | 463 | pre: Alloc,
|
454 | 464 | blockchain_test: BlockchainTestFiller,
|
|
0 commit comments