Skip to content

Commit

Permalink
chore: fix commitanalyzer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippHeuer committed Jan 24, 2023
1 parent eaaa6db commit 21e0f61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/common/commitanalyser/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package commitanalyser
import (
"testing"

"github.com/cidverse/normalizeci/pkg/vcsrepository"
"github.com/cidverse/normalizeci/pkg/vcsrepository/vcsapi"
"github.com/stretchr/testify/assert"
)

func TestDeterminateNextReleaseVersionBreaking(t *testing.T) {
var commits = []vcsrepository.Commit{
var commits = []vcsapi.Commit{
{
Message: `fix!: resolves a issue`,
Description: ``,
Expand All @@ -20,7 +20,7 @@ func TestDeterminateNextReleaseVersionBreaking(t *testing.T) {
}

func TestDeterminateNextReleaseVersionFeature(t *testing.T) {
var commits = []vcsrepository.Commit{
var commits = []vcsapi.Commit{
{
Message: `feat: adds new feature`,
Description: ``,
Expand All @@ -36,7 +36,7 @@ func TestDeterminateNextReleaseVersionFeature(t *testing.T) {
}

func TestDeterminateNextReleaseVersionFix(t *testing.T) {
var commits = []vcsrepository.Commit{
var commits = []vcsapi.Commit{
{
Message: `fix: resolves a issue`,
Description: ``,
Expand Down

0 comments on commit 21e0f61

Please sign in to comment.