Skip to content

Commit

Permalink
Correct log arg ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Olshevski committed Dec 13, 2023
1 parent 20c0dd9 commit 2796d35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/controllers/reconciliation/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ func (c *crudTestCase) WaitForPhase(t *testing.T, downstream client.Client, phas
currentPhase := getPhase(obj)
currentRV := obj.GetResourceVersion()
if lastRV == "" {
t.Logf("initial resource version %s was observed in phase %s", obj.GetResourceVersion(), currentPhase)
t.Logf("initial resource version %s was observed in phase %s", currentRV, currentPhase)
} else if currentRV != lastRV {
t.Logf("resource version transitioned from %s to %s in phase %s", obj.GetResourceVersion(), lastRV, currentPhase)
t.Logf("resource version transitioned from %s to %s in phase %s", lastRV, currentRV, currentPhase)
}
lastRV = currentRV
return err == nil && currentPhase == phase
Expand Down

0 comments on commit 2796d35

Please sign in to comment.