Skip to content

Commit

Permalink
fix E2E
Browse files Browse the repository at this point in the history
  • Loading branch information
mrproliu committed Dec 23, 2024
1 parent d60c098 commit cf253a4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test/e2e/concurrency/fail-fast/internal/expected.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ args:
headers:
Accept: application/json
Host: 127.0.0.1:8080
User-Agent: curl/7.81.0
origin: 172.18.0.1
User-Agent: {{ notEmpty (index .headers "User-Agent") }}
origin: {{ notEmpty .origin }}
url: http://127.0.0.1:8080/get?case=success
4 changes: 2 additions & 2 deletions test/e2e/concurrency/non-fail-fast/internal/expected.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ args:
headers:
Accept: application/json
Host: 127.0.0.1:8080
User-Agent: curl/7.81.0
origin: 172.18.0.1
User-Agent: {{ notEmpty (index .headers "User-Agent") }}
origin: {{ notEmpty .origin }}
url: http://127.0.0.1:8080/get?case=success
4 changes: 2 additions & 2 deletions test/e2e/non-concurrency/fail-fast/internal/expected.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ args:
headers:
Accept: application/json
Host: 127.0.0.1:8080
User-Agent: curl/7.81.0
origin: 172.18.0.1
User-Agent: {{ notEmpty (index .headers "User-Agent") }}
origin: {{ notEmpty .origin }}
url: http://127.0.0.1:8080/get?case=success
4 changes: 2 additions & 2 deletions test/e2e/non-concurrency/non-fail-fast/internal/expected.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ args:
headers:
Accept: application/json
Host: 127.0.0.1:8080
User-Agent: curl/7.81.0
origin: 172.18.0.1
User-Agent: {{ notEmpty (index .headers "User-Agent") }}
origin: {{ notEmpty .origin }}
url: http://127.0.0.1:8080/get?case=success

0 comments on commit cf253a4

Please sign in to comment.