From 017836f1a7cd8f707320a9d05bf9710c71b559d0 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Mon, 2 Dec 2024 16:58:03 +0100 Subject: [PATCH] prefix integration tests with TestAcc --- internal/git_fetch_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/git_fetch_test.go b/internal/git_fetch_test.go index a6496a215..aca4f1795 100644 --- a/internal/git_fetch_test.go +++ b/internal/git_fetch_test.go @@ -23,7 +23,7 @@ func assertGitInfo(t *testing.T, info git.GitRepositoryInfo, expectedRoot string assert.Equal(t, expectedRoot, info.WorktreeRoot.Native()) } -func TestFetchRepositoryInfoAPI(t *testing.T) { +func TestAccFetchRepositoryInfoAPI(t *testing.T) { ctx, wt := acc.WorkspaceTest(t) me, err := wt.W.CurrentUser.Me(ctx) require.NoError(t, err) @@ -50,7 +50,7 @@ func TestFetchRepositoryInfoAPI(t *testing.T) { } } -func TestFetchRepositoryInfoDotGit(t *testing.T) { +func TestAccFetchRepositoryInfoDotGit(t *testing.T) { ctx, wt := acc.WorkspaceTest(t) repo := cloneRepoLocally(t, examplesRepoUrl)