From 32ba9919ee764a16f607cd5256e3df66090a20b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Lamarque?= Date: Mon, 20 Feb 2023 17:19:04 +0400 Subject: [PATCH] test(#31): rename tests of plus and minus operations for AnyInt --- src/commonTest/kotlin/kotools/types/number/AnyIntTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commonTest/kotlin/kotools/types/number/AnyIntTest.kt b/src/commonTest/kotlin/kotools/types/number/AnyIntTest.kt index 6459e56a7..c3140d1b9 100644 --- a/src/commonTest/kotlin/kotools/types/number/AnyIntTest.kt +++ b/src/commonTest/kotlin/kotools/types/number/AnyIntTest.kt @@ -11,7 +11,7 @@ import kotlin.test.Test class AnyIntTest { @Test - fun int_plus_should_pass() { + fun int_plus_should_pass_with_an_AnyInt() { val x: Int = Random.nextInt() val y: AnyInt = NonZeroInt.random() val result: Int = x + y @@ -35,7 +35,7 @@ class AnyIntTest { } @Test - fun int_minus_should_pass() { + fun int_minus_should_pass_with_an_AnyInt() { val x: Int = Random.nextInt() val y: AnyInt = NonZeroInt.random() val result: Int = x - y