Skip to content

Commit 3e1b758

Browse files
committed
ktlint
1 parent cb62380 commit 3e1b758

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/io/SdkBufferedSinkTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ abstract class AbstractBufferedSinkTest(
5656

5757
@Ignore // FIXME Re-enable after Kotlin/Native implementation
5858
@Test
59-
6059
fun testWriteInt() {
6160
sink.writeInt(0xdeadbeef.toInt())
6261
sink.flush()

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/time/InstantTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class InstantTest {
229229
// Always good to learn from others...
230230
class V2JavaSdkTests {
231231
@Ignore // FIXME Re-enable after Kotlin/Native implementation
232-
@Test
232+
@Test
233233
fun v2JavaSdkTt0031561767() {
234234
val input = "Fri, 16 May 2014 23:56:46 GMT"
235235
val instant: Instant = Instant.fromRfc5322(input)
@@ -241,7 +241,7 @@ class InstantTest {
241241
* same before and after marshalling/unmarshalling
242242
*/
243243
@Ignore // FIXME Re-enable after Kotlin/Native implementation
244-
@Test
244+
@Test
245245
fun v2JavaSdkUnixTimestampRoundtrip() {
246246
// v2 sdk used currentTimeMillis(), instead we just hard code a value here
247247
// otherwise that would be a JVM specific test since since we do not (yet) have

0 commit comments

Comments
 (0)