Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Sep 29, 2023
1 parent 2bb494a commit ac22b72
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,6 @@ data class KotlinDependency(

// External third-party dependencies
val KOTLIN_TEST = KotlinDependency(GradleConfiguration.TestImplementation, "kotlin.test", "org.jetbrains.kotlin", "kotlin-test", KOTLIN_COMPILER_VERSION)
// FIXME Can't use Junit in Native!
// val KOTLIN_TEST_JUNIT5 = KotlinDependency(GradleConfiguration.TestImplementation, "kotlin.test.junit5", "org.jetbrains.kotlin", "kotlin-test-junit5", KOTLIN_COMPILER_VERSION)
// val JUNIT_JUPITER_ENGINE = KotlinDependency(GradleConfiguration.TestRuntimeOnly, "org.junit.jupiter", "org.junit.jupiter", "junit-jupiter-engine", "5.4.2")
}

override fun getDependencies(): List<SymbolDependency> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ protected constructor(builder: Builder<T>) {
*/
fun renderTestClass(testClassName: String) {
writer.addImport(KotlinDependency.KOTLIN_TEST.namespace, "Test")
// FIXME can't use Junit in Native!
// writer.dependencies.addAll(KotlinDependency.KOTLIN_TEST_JUNIT5.dependencies)
// writer.dependencies.addAll(KotlinDependency.JUNIT_JUPITER_ENGINE.dependencies)

writer.write("")
.openBlock("class $testClassName {")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ import kotlin.test.assertEquals

class DefaultAwsHttpSignerTest : AwsHttpSignerTestBase(DefaultAwsSigner)

// FIXME - move out of common
// class CrtAwsHttpSignerTest : AwsHttpSignerTestBase(CrtAwsSigner)

/**
* Basic sanity tests. Signing (including `AwsHttpSigner`) is covered by the more exhaustive
* test suite in the `aws-signing-tests` module.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/

package aws.smithy.kotlin.runtime.io

Expand Down

0 comments on commit ac22b72

Please sign in to comment.