diff --git a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ElasticIpTest.php b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ElasticIpTest.php index 85072d1..d663eef 100644 --- a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ElasticIpTest.php +++ b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ElasticIpTest.php @@ -151,7 +151,8 @@ class ElasticIpTest extends AwsCloudTestCase { ]), t('Confirm Message') . ': ' . t('Delete | The AWS Cloud Elastic IP "@name" has been deleted.', [ - '@name' => $edit[$i]['name']]) + '@name' => $edit[$i]['name'] + ]) ); // Make sure listing. @@ -163,8 +164,8 @@ class ElasticIpTest extends AwsCloudTestCase { for ($j = 0; $j < $i + 1; $j++) { $this->assertNoText($edit[$j]['name'], t('Delete | List | Make sure w/ Listing: @name', array( - '@name' => $edit[$j]['name'])) - ); + '@name' => $edit[$j]['name'] + ))); } } } diff --git a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ImageTest.php b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ImageTest.php index ff7d417..0e15fa0 100644 --- a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ImageTest.php +++ b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/ImageTest.php @@ -145,7 +145,8 @@ class ImageTest extends AwsCloudTestCase { for ($j = 0; $j < $i + 1; $j++) { // 3 times $this->assertNoText($edit[$i]['name'], t('Delete | List | Make sure w/ Listing: @name', array( - '@name' => $edit[$i]['name']))); + '@name' => $edit[$i]['name'] + ))); } } } @@ -182,7 +183,8 @@ class ImageTest extends AwsCloudTestCase { $this->assertNoText(t('warning'), t('Delete | List | Make sure w/o Warnings')); $this->assertNoText($name, t('Delete | List | Make sure w/ Listing: @name', array( - '@name' => $name))); + '@name' => $name + ))); } private function deleteImage($cloud_context, $num, $name) { diff --git a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/InstanceTest.php b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/InstanceTest.php index eff6910..e11c221 100644 --- a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/InstanceTest.php +++ b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/InstanceTest.php @@ -197,7 +197,8 @@ class InstanceTest extends AwsCloudTestCase { for ($j = 0; $j < $i + 1; $j++) { // 3 times $this->assertNoText($edit[$i]['name'], t('Terminate | List | Make sure w/ Listing: @name', array( - '@name' => $edit[$i]['name']))); + '@name' => $edit[$i]['name'] + ))); } } } diff --git a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/KeyPairTest.php b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/KeyPairTest.php index 196d72b..e5a65aa 100644 --- a/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/KeyPairTest.php +++ b/modules/cloud_service_providers/aws_cloud/tests/src/Functional/Ec2/KeyPairTest.php @@ -126,7 +126,8 @@ class KeyPairTest extends AwsCloudTestCase { for ($j = 0; $j < $i + 1; $j++) { // 3 times $this->assertNoText($add[$i]['key_pair_name'], t('Delete | List | Make sure w/ Listing: @key_pair_name', array( - '@key_pair_name' => $add[$i]['key_pair_name']))); + '@key_pair_name' => $add[$i]['key_pair_name'] + ))); } } }