Skip to content

Commit 7745f47

Browse files
authored
Merge pull request #381 from andyli029/fix_e2e
*: fix .gitignore about e2e logs and function
2 parents 2d8c0fc + 2a40c31 commit 7745f47

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ bin/
2323
.idea
2424
# vs code.
2525
.vscode
26+
27+
# e2e logs
28+
test/e2e/logs_*
29+

test/e2e/simplecase/list_namespace.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ import (
3131
var _ = Describe("Namespace test", Label("simplecase"), Ordered, func() {
3232
var f *framework.Framework
3333
BeforeEach(func() {
34-
f = &framework.Framework{
35-
BaseName: "mysqlcluster-e2e",
36-
Log: framework.Log,
37-
}
34+
f = framework.NewFramework("mysqlcluster-e2e")
3835
f.BeforeEach()
3936
})
4037

0 commit comments

Comments
 (0)