Skip to content

Commit

Permalink
test(e2e/app): disable testUpgradeBridgeNative (#2389)
Browse files Browse the repository at this point in the history
Disable the test for OmniBridgeNative as it was failing because the
bridge has not yet been upgraded. Post-upgrade the test can be
reenabled.

issue: none
  • Loading branch information
Zodomo authored Nov 5, 2024
1 parent 855cac6 commit 475cb63
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions e2e/app/admin/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@ func Test(ctx context.Context, def app.Definition) error {
return err
}

if err := testUpgradeBridgeNative(ctx, def); err != nil {
return err
}
/*
if err := testUpgradeBridgeNative(ctx, def); err != nil {
return err
}
*/

if err := testUpgradeBridgeL1(ctx, def); err != nil {
return err
Expand Down Expand Up @@ -152,6 +154,7 @@ func testUpgradeStaking(ctx context.Context, def app.Definition) error {
return nil
}

/*
func testUpgradeBridgeNative(ctx context.Context, def app.Definition) error {
err := UpgradeBridgeNative(ctx, def, Config{Broadcast: true})
if err != nil {
Expand All @@ -160,6 +163,7 @@ func testUpgradeBridgeNative(ctx context.Context, def app.Definition) error {
return nil
}
*/

func testUpgradeBridgeL1(ctx context.Context, def app.Definition) error {
err := UpgradeBridgeL1(ctx, def, Config{Broadcast: true})
Expand Down

0 comments on commit 475cb63

Please sign in to comment.