aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_flow.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_flow.py')
-rw-r--r--test/test_flow.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_flow.py b/test/test_flow.py
index 4c4f7bf8..fa49aecd 100644
--- a/test/test_flow.py
+++ b/test/test_flow.py
@@ -571,10 +571,10 @@ class uRequest(libpry.AutoTree):
h["test"] = ["test"]
c = flow.ClientConnect(("addr", 2222))
r = flow.Request(c, "host", 22, "https", "GET", "/", h, "content")
- u = r.url()
+ u = r.get_url()
assert r.set_url(u)
assert not r.set_url("")
- assert r.url() == u
+ assert r.get_url() == u
assert r._assemble()
r2 = r.copy()