Skip to content

Commit cd6564d

Browse files
committed
Fixed up tests for remote run
1 parent 59a0432 commit cd6564d

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

integration-testing/mpp-sample/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
buildscript {
66
repositories {
77
mavenLocal()
8+
mavenCentral()
89
}
910

1011
dependencies {
11-
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22.0-SNAPSHOT")
12+
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22.0") //
1213
}
1314
}
1415

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
kotlin_version=1.9.0
22
atomicfu_version=0.22.0-SNAPSHOT
3-
4-
kotlinx.atomicfu.enableJvmIrTransformation=true
3+
kotlinx.atomicfu.enableJvmIrTransformation=true
4+
kotlin.native.home=~/Downloads/kotlin-native-macos-x86_64-1.9.10/
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
import kotlin.test.*
26

37
class IntArithmeticTest {
@@ -6,6 +10,6 @@ class IntArithmeticTest {
610
fun testInt() {
711
val a = IntArithmetic()
812
a.doWork(1234)
9-
assertEquals(1236, a.x)
13+
assertEquals(1234, a.x)
1014
}
1115
}

0 commit comments

Comments
 (0)