File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,3 @@ def get(self, **params):
1919 '''
2020 return self .client .get ('/v1/reference-data/locations/{0}'
2121 .format (self .location_id ), ** params )
22-
Original file line number Diff line number Diff line change 2626 response = self .client .get ('/foo' , foo = 'bar' )
2727 expect (response ).to (equal (self .response ))
2828 expect (self .client .request ).to (
29- have_been_called_with ('GET' , '/foo' , foo = 'bar' )
29+ have_been_called_with ('GET' , '/foo' , foo = 'bar' )
3030 )
3131
3232 with context ('Client.post' ):
3535 response = self .client .post ('/foo' , foo = 'bar' )
3636 expect (response ).to (equal (self .response ))
3737 expect (self .client .request ).to (
38- have_been_called_with ('POST' , '/foo' , foo = 'bar' )
38+ have_been_called_with ('POST' , '/foo' , foo = 'bar' )
3939 )
4040
4141 with context ('Client.request' ):
You can’t perform that action at this time.
0 commit comments