e2e: connect jobID code golf

This commit is contained in:
Seth Hoenig 2020-07-10 10:24:13 -05:00
parent a9991e9ab9
commit ac8b51b611
1 changed files with 1 additions and 3 deletions

View File

@ -55,9 +55,7 @@ func (tc *ConnectE2ETest) AfterEach(f *framework.F) {
}
func connectJobID() string {
id := uuid.Generate()
jobID := "connect" + id[0:8]
return jobID
return "connect" + uuid.Generate()[0:8]
}
// TestConnectDemo tests the demo job file used in Connect Integration examples.