From d27f858564aa812da22324039f19844e03f3197d Mon Sep 17 00:00:00 2001 From: Ian Botsford <83236726+ianbotsf@users.noreply.github.com> Date: Wed, 10 Jan 2024 23:01:41 +0000 Subject: [PATCH] lint --- .../common/test/aws/smithy/kotlin/runtime/time/InstantTest.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/time/InstantTest.kt b/runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/time/InstantTest.kt index f22585624..b7bac9094 100644 --- a/runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/time/InstantTest.kt +++ b/runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/time/InstantTest.kt @@ -13,7 +13,6 @@ import kotlin.time.Duration.Companion.hours import kotlin.time.Duration.Companion.minutes import kotlin.time.Duration.Companion.nanoseconds import kotlin.time.Duration.Companion.seconds -import kotlin.time.DurationUnit // tests for conversion from a parsed representation into an Instant instance @@ -207,7 +206,6 @@ class InstantTest { val ts2 = 1_234_567_890_123_456_789L val expected2 = Instant.fromEpochSeconds(1_234_567_890L, 123_456_789) assertEquals(expected2, Instant.fromEpochNanoseconds(ts2)) - } // Select tests pulled from edge cases/tickets in the V2 Java SDK.