@@ -322,7 +322,8 @@ def test_create_options_prices(self):
322322 self .assert_no_fail (result )
323323
324324 def test_create_options_prices_location (self ):
325- result = self .run_command (['vs' , 'create-options' , '--prices' , 'dal13' , '--vsi-type' , 'TRANSIENT_CLOUD_SERVER' ])
325+ result = self .run_command (['vs' , 'create-options' , '--prices' , 'dal13' ,
326+ '--vsi-type' , 'TRANSIENT_CLOUD_SERVER' ])
326327 self .assert_no_fail (result )
327328
328329 @mock .patch ('SoftLayer.CLI.formatting.confirm' )
@@ -344,19 +345,19 @@ def test_dns_sync_both(self, confirm_mock):
344345 'getResourceRecords' )
345346 getResourceRecords .return_value = []
346347 createAargs = ({
347- 'type' : 'a' ,
348- 'host' : 'vs-test1' ,
349- 'domainId' : 12345 , # from SoftLayer_Account::getDomains
350- 'data' : '172.16.240.2' ,
351- 'ttl' : 7200
352- },)
348+ 'type' : 'a' ,
349+ 'host' : 'vs-test1' ,
350+ 'domainId' : 12345 , # from SoftLayer_Account::getDomains
351+ 'data' : '172.16.240.2' ,
352+ 'ttl' : 7200
353+ },)
353354 createPTRargs = ({
354- 'type' : 'ptr' ,
355- 'host' : '2' ,
356- 'domainId' : 123456 ,
357- 'data' : 'vs-test1.test.sftlyr.ws' ,
358- 'ttl' : 7200
359- },)
355+ 'type' : 'ptr' ,
356+ 'host' : '2' ,
357+ 'domainId' : 123456 ,
358+ 'data' : 'vs-test1.test.sftlyr.ws' ,
359+ 'ttl' : 7200
360+ },)
360361
361362 result = self .run_command (['vs' , 'dns-sync' , '100' ])
362363
@@ -399,12 +400,12 @@ def test_dns_sync_v6(self, confirm_mock):
399400 }
400401 }
401402 createV6args = ({
402- 'type' : 'aaaa' ,
403- 'host' : 'vs-test1' ,
404- 'domainId' : 12345 ,
405- 'data' : '2607:f0d0:1b01:0023:0000:0000:0000:0004' ,
406- 'ttl' : 7200
407- },)
403+ 'type' : 'aaaa' ,
404+ 'host' : 'vs-test1' ,
405+ 'domainId' : 12345 ,
406+ 'data' : '2607:f0d0:1b01:0023:0000:0000:0000:0004' ,
407+ 'ttl' : 7200
408+ },)
408409 guest .return_value = test_guest
409410 result = self .run_command (['vs' , 'dns-sync' , '--aaaa-record' , '100' ])
410411 self .assert_no_fail (result )
0 commit comments