Skip to content

Commit

Permalink
revert last change
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Dec 11, 2024
1 parent 56c94b3 commit d1bf9c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
14 changes: 0 additions & 14 deletions cmd/zetae2e/local/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,13 +389,6 @@ func localE2ETest(cmd *cobra.Command, _ []string) {
deployerRunner,
verbose,
e2etests.TestStressSolanaDepositName,
),
)
eg.Go(
solanaDepositPerformanceRoutine(
conf,
deployerRunner,
verbose,
e2etests.TestStressSPLDepositName,
),
)
Expand All @@ -405,13 +398,6 @@ func localE2ETest(cmd *cobra.Command, _ []string) {
deployerRunner,
verbose,
e2etests.TestStressSolanaWithdrawName,
),
)
eg.Go(
solanaWithdrawPerformanceRoutine(
conf,
deployerRunner,
verbose,
e2etests.TestStressSPLWithdrawName,
),
)
Expand Down
8 changes: 4 additions & 4 deletions e2e/e2etests/e2etests.go
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ var AllE2ETests = []runner.E2ETest{
"stress test SOL deposit",
[]runner.ArgDefinition{
{Description: "amount in lamports", DefaultValue: "1200000"},
{Description: "count of SOL deposits", DefaultValue: "50"},
{Description: "count of SOL deposits", DefaultValue: "30"},
},
TestStressSolanaDeposit,
),
Expand All @@ -785,7 +785,7 @@ var AllE2ETests = []runner.E2ETest{
"stress test SPL deposit",
[]runner.ArgDefinition{
{Description: "amount in SPL tokens", DefaultValue: "1200000"},
{Description: "count of SPL deposits", DefaultValue: "50"},
{Description: "count of SPL deposits", DefaultValue: "30"},
},
TestStressSPLDeposit,
),
Expand All @@ -794,7 +794,7 @@ var AllE2ETests = []runner.E2ETest{
"stress test SOL withdrawals",
[]runner.ArgDefinition{
{Description: "amount in lamports", DefaultValue: "1000000"},
{Description: "count of SOL withdrawals", DefaultValue: "50"},
{Description: "count of SOL withdrawals", DefaultValue: "30"},
},
TestStressSolanaWithdraw,
),
Expand All @@ -803,7 +803,7 @@ var AllE2ETests = []runner.E2ETest{
"stress test SPL withdrawals",
[]runner.ArgDefinition{
{Description: "amount in SPL tokens", DefaultValue: "1000000"},
{Description: "count of SPL withdrawals", DefaultValue: "50"},
{Description: "count of SPL withdrawals", DefaultValue: "30"},
},
TestStressSPLWithdraw,
),
Expand Down

0 comments on commit d1bf9c5

Please sign in to comment.