From 123b848d74b127da164ec5229d8ec34410880e6c Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 11 Feb 2021 15:12:21 +0600 Subject: [PATCH] update matrix test --- .../kotlin/dev/inmo/micro_utils/matrix/SimpleTest.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/matrix/src/commonTest/kotlin/dev/inmo/micro_utils/matrix/SimpleTest.kt b/matrix/src/commonTest/kotlin/dev/inmo/micro_utils/matrix/SimpleTest.kt index 3a8b00e0be1..17416d2fe77 100644 --- a/matrix/src/commonTest/kotlin/dev/inmo/micro_utils/matrix/SimpleTest.kt +++ b/matrix/src/commonTest/kotlin/dev/inmo/micro_utils/matrix/SimpleTest.kt @@ -27,14 +27,14 @@ class SimpleTest { val fromMatrixWithSimpleAdd = matrix { row { - add(1) - add(2) - add(3) + column(1) + column(2) + column(3) } row { - add(4) - add(5) - add(6) + column(4) + column(5) + column(6) } }