We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56813fe commit 111a34fCopy full SHA for 111a34f
tests/MatrixTest.php
@@ -358,7 +358,7 @@ public function testConcatenateBottom()
358
{
359
$matrixA = new Matrix([[1, 2, 3]]);
360
$matrixB = new Matrix([[4, 5, 6]]);
361
- $concatenated = $matrixA->contatenateBottom($matrixB);
+ $concatenated = $matrixA->concatenateBottom($matrixB);
362
363
$this->assertEquals([
364
[1, 2, 3],
@@ -370,7 +370,7 @@ public function testConcatenateRight()
370
371
$matrixA = new Matrix([[1], [2], [3]]);
372
$matrixB = new Matrix([[4], [5], [6]]);
373
- $concatenated = $matrixA->contatenateRight($matrixB);
+ $concatenated = $matrixA->concatenateRight($matrixB);
374
375
376
[1, 4],
0 commit comments