Skip to content

Commit

Permalink
update test source
Browse files Browse the repository at this point in the history
  • Loading branch information
tyiuhc committed Nov 4, 2024
1 parent 4299855 commit 68e6f85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion evaluation-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id("org.jlleitschuh.gradle.ktlint") version Versions.kotlinLint
}

version = "2.2.0-alpha.1"
version = "2.2.0-alpha.2"

kotlin {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.amplitude.experiment.evaluation

class PartialEvaluationEngine(private val log: Logger? = null) : EvaluationEngineImpl(log) {
class PartialEvaluationEngine(log: Logger? = null) : EvaluationEngineImpl(log) {
fun partialEvaluate(
context: EvaluationContext,
flags: List<EvaluationFlag>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import kotlinx.coroutines.runBlocking
import kotlin.test.DefaultAsserter
import kotlin.test.Test

private const val DEPLOYMENT_KEY = "server-BVdl6mbGjMSkY5lIJenbFaGim73JkHbU"
private const val DEPLOYMENT_KEY = "server-NgJxxvg8OGwwBsWVXqyxQbdiflbhvugy"

class PartialEvaluationTest {
private val engine: EvaluationEngine = EvaluationEngineImpl()
Expand Down

0 comments on commit 68e6f85

Please sign in to comment.