Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

n #12230

Closed
wants to merge 2 commits into from
Closed

n #12230

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/azuredevops/pipelines/pipelines.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Package pipelines allows calling Azure DevOps pipelines API to interact with kyma-project pipelines.
// It provides a set of functions to trigger a pipeline, get its status, and check the logs.
// It also includes functions to run tests on the build logs and timeline.
// These functions are designed to interact with kyma-project pipelines and it's tests.
// These functions are design
// TODO: Add more structured logging with debug severity to track execution in case of troubleshooting
package pipelines

Expand Down
7 changes: 3 additions & 4 deletions pkg/oidc/oidc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ package oidc_test
import (
"errors"
"fmt"

// "time"

// "fmt"
"os"

// "time"

"github.com/coreos/go-oidc/v3/oidc"
"github.com/go-jose/go-jose/v4/jwt"
tioidc "github.com/kyma-project/test-infra/pkg/oidc"
Expand Down Expand Up @@ -223,7 +222,7 @@ var _ = Describe("OIDC", func() {
Expect(claims.Subject).To(Equal("mysub"))
Expect(claims.Audience).To(Equal(jwt.Audience{"myaudience"}))
})
It("should return an error when unexpected job workflow reference is provided", func() {
It("should return when unexpected job workflow reference is provided", func() {
mockToken.On(
"Claims", &claims).Run(
func(args mock.Arguments) {
Expand Down
Loading