Commit 4cbe2a00 authored by Łukasz Nowak's avatar Łukasz Nowak

Avoid creating needless variables.

Scenario is used one, so just do it inline.
parent 943eae0b
...@@ -1365,35 +1365,6 @@ class TestVifibSlapWebServiceMixin(testVifibMixin): ...@@ -1365,35 +1365,6 @@ class TestVifibSlapWebServiceMixin(testVifibMixin):
RestoreComputerReference RestoreComputerReference
""" """
prepare_started_slave_instance_sequence_string = \
prepare_started_computer_partition_sequence_string + """
LoginTestVifibCustomer
PersonRequestSlaveInstance
SlapLogout
LoginDefaultUser
ConfirmOrderedSaleOrderActiveSense
Tic
SlapLogout
SlapLoginCurrentComputer
SoftwareInstanceAvailable
Tic
LoginTestVifibCustomer
RequestStopSoftwareInstanceFromCurrentComputerPartition
Tic
SoftwareInstanceStopped
Tic
StartSoftwareInstanceFromCurrentComputerPartition
Tic
SoftwareInstanceStarted
Tic
Logout
LoginDefaultUser
SetDeliveryLineAmountEqualTwo
CheckComputerPartitionInstanceHostingSalePackingListStarted
CheckComputerPartitionInstanceSetupSalePackingListStopped
Logout
"""
register_new_user_sequence_string = '\ register_new_user_sequence_string = '\
Logout \ Logout \
RequestCredentialFromWebSite \ RequestCredentialFromWebSite \
......
...@@ -496,7 +496,33 @@ class TestVifibSlapWebServiceSlaveInstance(TestVifibSlapWebServiceMixin): ...@@ -496,7 +496,33 @@ class TestVifibSlapWebServiceSlaveInstance(TestVifibSlapWebServiceMixin):
a Software Instance is destroyed a Software Instance is destroyed
""" """
sequence_list = SequenceList() sequence_list = SequenceList()
sequence_string = self.prepare_started_slave_instance_sequence_string + """ sequence_string = self.prepare_started_computer_partition_sequence_string + """
LoginTestVifibCustomer
PersonRequestSlaveInstance
SlapLogout
LoginDefaultUser
ConfirmOrderedSaleOrderActiveSense
Tic
SlapLogout
SlapLoginCurrentComputer
SoftwareInstanceAvailable
Tic
LoginTestVifibCustomer
RequestStopSoftwareInstanceFromCurrentComputerPartition
Tic
SoftwareInstanceStopped
Tic
StartSoftwareInstanceFromCurrentComputerPartition
Tic
SoftwareInstanceStarted
Tic
Logout
LoginDefaultUser
SetDeliveryLineAmountEqualTwo
CheckComputerPartitionInstanceHostingSalePackingListStarted
CheckComputerPartitionInstanceSetupSalePackingListStopped
Logout
LoginTestVifibCustomer LoginTestVifibCustomer
RequestDestroySoftwareInstanceFromCurrentComputerPartition RequestDestroySoftwareInstanceFromCurrentComputerPartition
Tic Tic
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment