update matrix test

This commit is contained in:
InsanusMokrassar 2021-02-11 15:12:21 +06:00
parent b120fbd2b1
commit 123b848d74
1 changed files with 6 additions and 6 deletions

View File

@ -27,14 +27,14 @@ class SimpleTest {
val fromMatrixWithSimpleAdd = matrix<Int> { val fromMatrixWithSimpleAdd = matrix<Int> {
row { row {
add(1) column(1)
add(2) column(2)
add(3) column(3)
} }
row { row {
add(4) column(4)
add(5) column(5)
add(6) column(6)
} }
} }