Skip to content

Commit a505466

Browse files
committed
Update code for Pcap file name to be consistant with other test
1 parent 628ccc8 commit a505466

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e/integration-tests/integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ var _ = g.Describe("NetObserv CLI e2e integration test suite", g.Ordered, func()
108108
targetPort := uint16(8080)
109109
cliArgs := []string{"packets", "--port=8080", "--copy=true", "--max-bytes=100000000", "--max-time=1m"}
110110
out, err := e2e.RunCommand(ilog, ocNetObservBinPath, cliArgs...)
111-
writeOutput(StartupDate+"-packetOutput", out)
111+
writeOutput(filePrefix+"-packetOutput", out)
112112
o.Expect(err).NotTo(o.HaveOccurred(), fmt.Sprintf("Error running command %v", err))
113113

114114
_, err = isCLIDone(clientset, cliNS)
@@ -283,7 +283,7 @@ var _ = g.Describe("NetObserv CLI e2e integration test suite", g.Ordered, func()
283283
o.Expect(err).NotTo(o.HaveOccurred(), fmt.Sprintf("Failed to query Prometheus for metrics: %v", err))
284284
o.Expect(metricValue).To(o.BeNumerically(">=", 0), fmt.Sprintf("Prometheus should return a valid metric value, but got %v", metricValue))
285285
})
286-
286+
287287
g.Describe("OCP-84801: Verify CLI runs under correct privileges", g.Label("Privileges"), func() {
288288

289289
tests := []struct {

0 commit comments

Comments
 (0)