Skip to content

Commit

Permalink
Remeve breakpoint function
Browse files Browse the repository at this point in the history
  • Loading branch information
javierdelapuente committed Feb 28, 2024
1 parent 8a4262b commit 81db879
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions charm/tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@
async def test_broken(ops_test: OpsTest, netbox_app, get_unit_ips):

unit_ips = await get_unit_ips("netbox")
breakpoint()
for unit_ip in unit_ips:
sess = requests.session()

url = f"http://{unit_ip}:8000"
res = sess.get(url, timeout=20,)
print("response", res)
print("response content", res.content)
assert res.status_code == 200
assert b"<title>Home | NetBox</title>" in res.content

Expand Down

0 comments on commit 81db879

Please sign in to comment.