Skip to content

Commit

Permalink
Remove debug println
Browse files Browse the repository at this point in the history
Signed-off-by: Chase Engelbrecht <[email protected]>
  • Loading branch information
engechas committed Dec 14, 2023
1 parent c4a82c5 commit 5571d44
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.opensearch.commons.alerting.model;
package org.opensearch.commons.alerting.model

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Test
import org.opensearch.commons.alerting.randomBucketLevelTrigger
import kotlin.test.assertEquals

Expand All @@ -10,7 +10,6 @@ class BucketLevelTriggerTests {
fun `test asTemplateArgs returns expected values`() {
val bucketLevelTrigger = randomBucketLevelTrigger()
val templateArg = bucketLevelTrigger.asTemplateArg()
System.out.println(templateArg)

assertEquals(templateArg[Trigger.ID_FIELD], bucketLevelTrigger.id)
assertEquals(templateArg[Trigger.NAME_FIELD], bucketLevelTrigger.name)
Expand Down

0 comments on commit 5571d44

Please sign in to comment.