From 534c5746d756b132fab4006d342cd5869a6e6630 Mon Sep 17 00:00:00 2001 From: Frank Viernau Date: Tue, 12 Mar 2024 14:25:06 +0100 Subject: [PATCH] test(model): Fix a typo Signed-off-by: Frank Viernau --- model/src/test/kotlin/PackageTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/src/test/kotlin/PackageTest.kt b/model/src/test/kotlin/PackageTest.kt index 9bdbfa45bed4e..16b6488e2ffc7 100644 --- a/model/src/test/kotlin/PackageTest.kt +++ b/model/src/test/kotlin/PackageTest.kt @@ -26,7 +26,7 @@ import io.kotest.matchers.should import io.kotest.matchers.shouldBe class PackageTest : StringSpec({ - "diff throws an exception if the identifiers are not equals" { + "diff throws an exception if the identifiers are not equal" { val pkg = Package.EMPTY.copy(id = Identifier("type1", "namespace1", "name1", "version1")) val other = Package.EMPTY.copy(id = Identifier("type2", "namespace2", "name2", "version2"))