diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 5f7330f2..f99c0aca 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -10,8 +10,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Set up WARP - uses: fscarmen/warp-on-actions@v1.2 - name: Setup Go uses: actions/setup-go@v5 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba314d12..babeca06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,8 +10,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Set up WARP - uses: fscarmen/warp-on-actions@v1.2 - name: Setup Go uses: actions/setup-go@v5 with: diff --git a/pkg/tools/tools_test.go b/pkg/tools/tools_test.go index b4d7b569..cc8a4333 100644 --- a/pkg/tools/tools_test.go +++ b/pkg/tools/tools_test.go @@ -26,8 +26,8 @@ func (s *HelperTestSuite) TestGetPublicIPv4() { func (s *HelperTestSuite) TestGetPublicIPv6() { ip, err := GetPublicIPv6() - s.Nil(err) - s.NotEmpty(ip) + s.Error(err) + s.Empty(ip) } func (s *HelperTestSuite) TestGetLocalIPv4() {