prefix integration tests with TestAcc

This commit is contained in:
Denis Bilenko 2024-12-02 16:58:03 +01:00
parent 42502513bf
commit 017836f1a7
1 changed files with 2 additions and 2 deletions

View File

@ -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)