Skip to content

Commit

Permalink
chore: remove the hardcoded version
Browse files Browse the repository at this point in the history
  • Loading branch information
mojtaba-esk committed Sep 13, 2024
1 parent 915d2a5 commit 4ee73fd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/e2e/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import (
"log"
"os"
"strings"

"github.com/celestiaorg/celestia-app/v3/test/e2e/testnet"
)

const (
Expand All @@ -20,11 +22,8 @@ type Test struct {
func main() {
logger := log.New(os.Stdout, "test-e2e", log.LstdFlags)

// latestVersion, err := testnet.GetLatestVersion()
// testnet.NoError("failed to get latest version", err)

// TODO: remove me when the issue with bbr is fixed on k8s
latestVersion := "v2.1.2"
latestVersion, err := testnet.GetLatestVersion()
testnet.NoError("failed to get latest version", err)

logger.Println("Running major upgrade to v2 test", "version", latestVersion)

Expand Down

0 comments on commit 4ee73fd

Please sign in to comment.