File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 20
20
except ImportError :
21
21
raise RuntimeError ('unittest2 is required to run the rauth test suite' )
22
22
23
- from inspect import stack , isfunction
23
+ from inspect import stack , isfunction # NOQA
24
24
25
- from mock import Mock
26
- from nose .tools import nottest
25
+ from mock import Mock # NOQA
26
+ from nose .tools import nottest # NOQA
27
27
28
28
29
29
class RauthTestCase (unittest .TestCase ):
Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ def fake_request(self,
120
120
121
121
signature_base_string += self .fake_get_sorted_params (ofly_params )
122
122
123
- all_params = dict (tuple (ofly_params .items ())
124
- + tuple (kwargs ['params' ].items ()))
123
+ all_params = dict (tuple (ofly_params .items ()) +
124
+ tuple (kwargs ['params' ].items ()))
125
125
126
126
kwargs ['params' ] = self .fake_get_sorted_params (all_params )
127
127
if not isinstance (kwargs ['params' ], bytes ):
You can’t perform that action at this time.
0 commit comments