Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnps committed Oct 12, 2012
1 parent c5525d4 commit 1726761
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion txServiceRegistry/test/test_client.py
Expand Up @@ -193,7 +193,8 @@ def configuration_assert(result):
def _marker_assertion(self, path, request):
client = getattr(self.client, path.strip('/'))
client.list(marker='someMarker')
request.assert_called_with('GET', path, options={'marker': 'someMarker'})
request.assert_called_with('GET', path,
options={'marker': 'someMarker'})

@mock.patch("txServiceRegistry.client.BaseClient.request")
def _limit_assertion(self, path, request):
Expand Down

0 comments on commit 1726761

Please sign in to comment.