Skip to content

Commit

Permalink
Removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-karpukhin committed Feb 6, 2025
1 parent 1fe61ed commit c983b3e
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions internal/controller/atlasproject/project_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package atlasproject
import (
"context"
"errors"
"fmt"
"testing"

"github.com/google/go-cmp/cmp"
Expand Down Expand Up @@ -749,13 +748,6 @@ func TestHandleProject(t *testing.T) {
result, err := reconciler.handleProject(ctx, "my-org-id", tt.project, services)
require.NoError(t, err)
assert.Equal(t, tt.result, result)
fmt.Println("DEBUG CONDITIONS FROM TEST OUTPUT ", ctx.Conditions())
fmt.Println("DEBUG CONDITIONS FROM EXPECTATIONS", tt.conditions)
fmt.Println("DEBUG", cmp.Diff(
tt.conditions,
ctx.Conditions(),
cmpopts.IgnoreFields(api.Condition{}, "LastTransitionTime"),
))
assert.True(
t,
cmp.Equal(
Expand Down

0 comments on commit c983b3e

Please sign in to comment.