-
Notifications
You must be signed in to change notification settings - Fork 243
Change usecase5 to testing app name for e2e tests #522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change usecase5 to testing app name for e2e tests #522
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.
LGTM
tests/e2e/e2e_test.go
Outdated
@@ -23,6 +23,7 @@ import ( | |||
|
|||
var t = strconv.FormatInt(time.Now().Unix(), 10) | |||
var projName = fmt.Sprintf("odo-%s", t) | |||
var appTestName = "testing" |
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.
shouldn't this be defined inside var _ = Describe("odoe2e", func() {
?
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.
LGTM 👍
fbea73d
to
6dcd899
Compare
@kadel I've updated the tests to indicate the new name in |
I meant something different. There is no reason to have var _ = Describe("odoe2e", func() {
appTestName := "testapp"
...
... |
Changes the ambiguous "usecase5" name to "testing". Also adds a constant to the e2e_test.go file.
6dcd899
to
cc59607
Compare
@kadel I see what you mean. Updated it and added the variable to be described under |
👍 Thank you |
Changes the ambiguous "usecase5" name to "testing". Also adds a constant
to the e2e_test.go file.