Skip to content

Commit 4bc76f3

Browse files
committed
test: don't print driver logs twice
1 parent 0a2c616 commit 4bc76f3

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

test/e2e/suite_test.go

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,19 +133,13 @@ var _ = ginkgo.AfterSuite(func() {
133133
}
134134
execTestCmd([]testCmd{createExampleDeployment})
135135

136-
blobLog := testCmd{
137-
command: "bash",
138-
args: []string{"test/utils/blob_log.sh"},
139-
startLog: "===================blob log===================",
140-
endLog: "==================================================",
141-
}
142136
e2eTeardown := testCmd{
143137
command: "make",
144138
args: []string{"e2e-teardown"},
145139
startLog: "Uninstalling Azure Blob Storage CSI driver...",
146140
endLog: "Azure Blob Storage CSI driver uninstalled",
147141
}
148-
execTestCmd([]testCmd{blobLog, e2eTeardown})
142+
execTestCmd([]testCmd{e2eTeardown})
149143

150144
// install/uninstall CSI Driver deployment scripts test
151145
installDriver := testCmd{

0 commit comments

Comments
 (0)