-
Notifications
You must be signed in to change notification settings - Fork 95
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proposed changes looks good to me. Minor comments to use t.Logf instead of fmt.printf().
@@ -250,6 +253,9 @@ func TestSanity(t *testing.T) { | |||
volumeName, elem.endPoint) | |||
} | |||
} | |||
fmt.Printf("%s END: Running TestSanity on %s (may take a while)...\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor: better to stick with other logging in this file using t.Logf() ... e.g. line 252
IIRC, you were suggesting to use log
as it comes with in-built logging current time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True but I am trying to be consistent with START block at L213 'fmt.Printf("%s START:'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see ... fine with me. We will take care during massive cleanup.
Great! Thanks for helping here! |
Thanks @shuklanirdesh82 for review. Since this is test-only minor change, merging with 1 approval. |
Saves approximately 8-9minutes each CI run.