From 9d799270bec94b8b3b7eb3dbf746b68e298ad8f4 Mon Sep 17 00:00:00 2001 From: scmacdon Date: Wed, 7 Feb 2024 13:00:37 -0500 Subject: [PATCH] fixed linter issue --- kotlin/services/autoscale/src/test/kotlin/AutoScalingTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kotlin/services/autoscale/src/test/kotlin/AutoScalingTest.kt b/kotlin/services/autoscale/src/test/kotlin/AutoScalingTest.kt index 075703f6941..422567976e2 100644 --- a/kotlin/services/autoscale/src/test/kotlin/AutoScalingTest.kt +++ b/kotlin/services/autoscale/src/test/kotlin/AutoScalingTest.kt @@ -39,7 +39,7 @@ class AutoScalingTest { private var groupNameSc = "" private var launchTemplateName = "" private var vpcZoneId = "" - private var serviceLinkedRoleARN= "" + private var serviceLinkedRoleARN = "" @BeforeAll @Throws(IOException::class) @@ -148,6 +148,6 @@ class AutoScalingTest { val groupNameSc: String? = null val launchTemplateName: String? = null val vpcZoneId: String? = null - val serviceLinkedRoleARN:String? = null + val serviceLinkedRoleARN: String? = null } }