Skip to content

Commit 3c95c43

Browse files
committed
Fix inadvertent whitespace changes
1 parent 238124a commit 3c95c43

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

hll/dynamodb-mapper/dynamodb-mapper/jvm/test/aws/sdk/kotlin/hll/dynamodbmapper/DynamoDbMapperTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
* SPDX-License-Identifier: Apache-2.0
4-
*/
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
55
package aws.sdk.kotlin.hll.dynamodbmapper
66

77
import aws.sdk.kotlin.hll.dynamodbmapper.items.AttributeDescriptor

hll/dynamodb-mapper/dynamodb-mapper/jvm/test/aws/sdk/kotlin/hll/dynamodbmapper/operations/QueryTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
* SPDX-License-Identifier: Apache-2.0
4-
*/
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
55
package aws.sdk.kotlin.hll.dynamodbmapper.operations
66

77
import aws.sdk.kotlin.hll.dynamodbmapper.expressions.KeyFilter

hll/dynamodb-mapper/dynamodb-mapper/jvm/test/aws/sdk/kotlin/hll/dynamodbmapper/operations/ScanTest.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
* SPDX-License-Identifier: Apache-2.0
4-
*/
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
55
package aws.sdk.kotlin.hll.dynamodbmapper.operations
66

77
import aws.sdk.kotlin.hll.dynamodbmapper.items.AttributeDescriptor
@@ -18,7 +18,6 @@ import kotlinx.coroutines.flow.Flow
1818
import kotlinx.coroutines.flow.map
1919
import kotlinx.coroutines.flow.toSet
2020
import kotlinx.coroutines.test.runTest
21-
import kotlin.test.assertEquals
2221

2322
class ScanTest : DdbLocalTest() {
2423
companion object {

hll/dynamodb-mapper/dynamodb-mapper/jvm/test/aws/sdk/kotlin/hll/dynamodbmapper/testutils/DdbLocalTest.kt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
* SPDX-License-Identifier: Apache-2.0
4-
*/
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
55
package aws.sdk.kotlin.hll.dynamodbmapper.testutils
66

77
import aws.sdk.kotlin.hll.dynamodbmapper.DynamoDbMapper
@@ -24,6 +24,8 @@ import kotlin.test.assertContains
2424
import kotlin.test.assertEquals
2525
import kotlin.test.assertNotNull
2626

27+
private const val DDB_LOCAL_PORT = 44212 // Keep in sync with build.gradle.kts
28+
2729
/**
2830
* The base class for test classes which need DynamoDB Local running. This class provides a few convenience declarations
2931
* for subclasses:
@@ -183,4 +185,3 @@ private class RequestCapturingInterceptor(val requests: MutableList<HttpRequest>
183185
}
184186
}
185187
}
186-
private const val DDB_LOCAL_PORT = 44212 // Keep in sync with build.gradle.kts

0 commit comments

Comments
 (0)