Skip to content

Commit f5eabba

Browse files
committed
Fixes test
1 parent b957898 commit f5eabba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/patterns/addon/pkg/loaders/git_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ func TestParseGitURL(t *testing.T) {
3030
for _, tt := range tests {
3131
gitRepo := parseGitURL(tt.rawURL)
3232
if gitRepo.baseURL != tt.baseURL {
33-
t.Errorf("Expected base url: %v, got %v", tt.baseURL, actualBase)
33+
t.Errorf("Expected base url: %v, got %v", tt.baseURL, gitRepo.baseURL)
3434
}
3535

3636
if gitRepo.subDir != tt.subDir {
37-
t.Errorf("Expected base url: %v, got %v", tt.subDir, actualSubDir)
37+
t.Errorf("Expected base url: %v, got %v", tt.subDir, gitRepo.subDir)
3838
}
3939
}
4040
}

0 commit comments

Comments
 (0)