From 7737705ab9b2a8d1ac87f1ca90d4fa752f757b66 Mon Sep 17 00:00:00 2001 From: "lilong.129" Date: Thu, 26 Jun 2025 20:14:50 +0800 Subject: [PATCH] bump version to v5.0.0 --- internal/version/VERSION | 2 +- uixt/harmony_test.go | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/internal/version/VERSION b/internal/version/VERSION index ddf9df1d..d3845ad3 100644 --- a/internal/version/VERSION +++ b/internal/version/VERSION @@ -1 +1 @@ -v5.0.0-beta-2506262009 +v5.0.0 diff --git a/uixt/harmony_test.go b/uixt/harmony_test.go index 2f2ac440..dff5f75b 100644 --- a/uixt/harmony_test.go +++ b/uixt/harmony_test.go @@ -3,7 +3,6 @@ package uixt import ( - "fmt" "testing" "github.com/httprunner/httprunner/v5/uixt/option" @@ -25,7 +24,7 @@ func TestWindowSize(t *testing.T) { driver := setupHDCDriverExt(t) size, err := driver.WindowSize() assert.Nil(t, err) - t.Log(fmt.Sprintf("width: %d, height: %d", size.Width, size.Height)) + assert.NotNil(t, size) } func TestHarmonyTap(t *testing.T) {