Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Yun-Tang Hsu <[email protected]>
  • Loading branch information
Yun-Tang Hsu committed Dec 10, 2023
1 parent f1636c9 commit 6fb188e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ jobs:
run: |
mkdir log
mkdir test-e2e-fa-coverage
ANTREA_LOG_DIR=$PWD/log ANTREA_COV_DIR=$PWD/test-e2e-fa-coverage ./ci/kind/test-e2e-kind.sh --encap-mode encap --coverage --flow-visibility --ip-family dual
ANTREA_LOG_DIR=$PWD/log ANTREA_COV_DIR=$PWD/test-e2e-fa-coverage ./ci/kind/test-e2e-kind.sh --encap-mode encap --coverage --flow-visibility
- name: Tar coverage files
run: tar -czf test-e2e-fa-coverage.tar.gz test-e2e-fa-coverage
- name: Upload coverage for test-e2e-fa-coverage
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/flowaggregator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1518,7 +1518,7 @@ func getRecordsFromOutput(t *testing.T, output, labelFilter, src, dst, srcPort s
split2 := strings.Split(split[1], "I1209")
result := strings.ReplaceAll(split2[0], "\\n", " ")
connectionMap["sourcePodLabels"+result] += 1
if connectionMap["sourcePodLabels"+result] > highestNumber {
if connectionMap["sourcePodLabels"+result] >= highestNumber {
highestNumber = connectionMap["sourcePodLabels"+result]
mostRecord = recordSlice
}
Expand Down

0 comments on commit 6fb188e

Please sign in to comment.