Skip to content

Commit

Permalink
Removes extra indents from TestSubresourcePlugin
Browse files Browse the repository at this point in the history
Removed extra indents from in front of each function in the
TestSubresourcePlugin class in test_api_v2.py so that it
meets pep8 requirements and matches up with the rest of the code.

Change-Id: Id194514d47508f8915aca18347a3c404b91a7abd
Closes-Bug: 1355100
  • Loading branch information
Tehsmash committed Aug 11, 2014
1 parent 055fff5 commit 8be69e1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions neutron/tests/unit/test_api_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1453,22 +1453,22 @@ def test_extended_create(self):


class TestSubresourcePlugin():
def get_network_dummies(self, context, network_id,
filters=None, fields=None):
return []
def get_network_dummies(self, context, network_id,
filters=None, fields=None):
return []

def get_network_dummy(self, context, id, network_id,
fields=None):
return {}
def get_network_dummy(self, context, id, network_id,
fields=None):
return {}

def create_network_dummy(self, context, network_id, dummy):
return {}
def create_network_dummy(self, context, network_id, dummy):
return {}

def update_network_dummy(self, context, id, network_id, dummy):
return {}
def update_network_dummy(self, context, id, network_id, dummy):
return {}

def delete_network_dummy(self, context, id, network_id):
return
def delete_network_dummy(self, context, id, network_id):
return


class ListArgsTestCase(base.BaseTestCase):
Expand Down

0 comments on commit 8be69e1

Please sign in to comment.