Skip to content

Commit

Permalink
Fix regression from f032719
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-ucsc committed Jul 12, 2016
1 parent 1110e2d commit 796e986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/cgcloud/lib/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CgcloudTestCase( TestCase ):

@classmethod
def setUpClass( cls ):
super( CgcloudTestCase, cls ).tearDownClass( )
super( CgcloudTestCase, cls ).setUpClass( )
if running_on_ec2( ):
os.environ.setdefault( 'CGCLOUD_ZONE',
get_instance_metadata( )[ 'placement' ][ 'availability-zone' ] )
Expand All @@ -44,4 +44,4 @@ def tearDownClass( cls ):
# they can therefore be removed.
if cls.cleanup and cls.ctx.namespace == cls.__namespace:
cls.ctx.reset_namespace_security( )
super( CgcloudTestCase, cls ).setUpClass( )
super( CgcloudTestCase, cls ).tearDownClass( )

0 comments on commit 796e986

Please sign in to comment.