diff options
| author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-20 11:06:57 +1300 |
|---|---|---|
| committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-20 11:06:57 +1300 |
| commit | 301d52d9d05f2c5f074fe68c73acc1c32e518020 (patch) | |
| tree | f55ac41b1deb5ea0a3baa63930c0ef5193f3886f /test/netlib | |
| parent | f964d49853a3f0d22e0f6d4cff7cfbc49008e40e (diff) | |
| download | mitmproxy-301d52d9d05f2c5f074fe68c73acc1c32e518020.tar.gz mitmproxy-301d52d9d05f2c5f074fe68c73acc1c32e518020.tar.bz2 mitmproxy-301d52d9d05f2c5f074fe68c73acc1c32e518020.zip | |
netlib.encoding -> netlib.http.encoding
Encoding is highly specific to http, and only used within this module.
Diffstat (limited to 'test/netlib')
| -rw-r--r-- | test/netlib/http/test_encoding.py (renamed from test/netlib/test_encoding.py) | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/netlib/test_encoding.py b/test/netlib/http/test_encoding.py index e1175ef0..681f9bfc 100644 --- a/test/netlib/test_encoding.py +++ b/test/netlib/http/test_encoding.py @@ -1,7 +1,8 @@ import mock import pytest -from netlib import encoding, tutils +from netlib.http import encoding +from netlib import tutils @pytest.mark.parametrize("encoder", [ |
