Skip to content

Commit 942a886

Browse files
committed
fixup: Stop running the dynamic fees test serially
1 parent e6f6cfe commit 942a886

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

tests/e2e/c/dynamic_fees.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ import (
2727
// This test uses the compiled bin for `hashing.sol` as
2828
// well as its ABI contained in `hashing_contract.go`.
2929

30-
// This test needs to be run serially to minimize the potential for
31-
// other tests to affect the gas price
32-
var _ = e2e.DescribeCChainSerial("[Dynamic Fees]", func() {
30+
var _ = e2e.DescribeCChain("[Dynamic Fees]", func() {
3331
require := require.New(ginkgo.GinkgoT())
3432

3533
// Need a gas limit much larger than the standard 21_000 to enable

tests/e2e/describe.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,3 @@ func DescribePChain(text string, body func()) bool {
3030
func DescribeCChain(text string, body func()) bool {
3131
return ginkgo.Describe("[C-Chain] "+text, body)
3232
}
33-
34-
// DescribeCChain annotates serial tests for C-Chain.
35-
// Can run with any type of cluster (e.g., local, fuji, mainnet).
36-
func DescribeCChainSerial(text string, body func()) bool {
37-
return ginkgo.Describe("[C-Chain] "+text, ginkgo.Serial, body)
38-
}

0 commit comments

Comments
 (0)