diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2015-08-26 17:48:57 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2015-08-27 20:02:04 -0300 |
commit | 057f9c02894c05de4d1d4fc1f93ba86ec6bea96d (patch) | |
tree | af36188b5178b001b0b9d6e7b323fe513831025b /client/changes | |
parent | 23ea0193a521a1f5cb539a342be594b7b7acedcf (diff) |
[tests] fix variable name from refactor
From:
[refactor] removing getters and setters from couch.py
_couch_url was a private variable with getter and setter doing the same
as a public variable. It is accessed all over the code, so being private
with getters and setters didnt make sense. This commit fixes the tests
to also follow this style from now on.
Diffstat (limited to 'client/changes')
-rw-r--r-- | client/changes/refactor_improve_http_target | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/changes/refactor_improve_http_target b/client/changes/refactor_improve_http_target new file mode 100644 index 00000000..a8fe5f60 --- /dev/null +++ b/client/changes/refactor_improve_http_target @@ -0,0 +1,3 @@ + o Split http_target into 4 modules, separating those responsibilities. + o Refactor details of making an HTTP request body and headers out of the + send/fetch logic. This also makes it easier to enable batching. |