Skip to content

Commit

Permalink
Attempting to debug test
Browse files Browse the repository at this point in the history
  • Loading branch information
tleed5 committed Mar 26, 2024
1 parent 17b4fa2 commit 1175491
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3625,7 +3625,7 @@ func TestProjectScheduledTriggerResources(t *testing.T) {
}

if len(nonTenantedProjectTriggers) != 9 {
t.Fatal("Non Tenanted project should have exactly 8 project triggers and 1 runbook trigger")
t.Fatal("Non Tenanted project should have exactly 8 project triggers and 1 runbook trigger, only found: " + fmt.Sprint(len(nonTenantedProjectTriggers)))
}

tenantedProjectName := "Tenanted"
Expand All @@ -3637,8 +3637,8 @@ func TestProjectScheduledTriggerResources(t *testing.T) {
return err
}

if len(tenantedProjectTriggers) != 9 {
t.Fatal("Tenanted project should have exactly 1 project trigger and 1 runbook trigger")
if len(tenantedProjectTriggers) != 2 {
t.Fatal("Tenanted project should have exactly 1 project trigger and 1 runbook trigger, only found: " + fmt.Sprint(len(tenantedProjectTriggers)))
}

return nil
Expand Down

0 comments on commit 1175491

Please sign in to comment.