Skip to content

Commit

Permalink
Fix NAP test to not create duplicate headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean-Coakley committed Dec 18, 2020
1 parent a09eec6 commit a712b43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/suite/test_app_protect_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,9 @@ def test_ap_sec_logs_on(

print("----------------------- Send valid request ----------------------")
headers = {
"host": ingress_host,
"user-agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0"
}
"Host": ingress_host,
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0"
}
response = requests.get(
appprotect_setup.req_url, headers=headers, verify=False
)
Expand Down

0 comments on commit a712b43

Please sign in to comment.