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 b7a36c9 commit 03f58c7Copy full SHA for 03f58c7
tests/MatrixTest.php
@@ -238,9 +238,9 @@ public function testDiagonal() {
238
239
$this->assertEquals(1, $matrix->rows);
240
$this->assertEquals(3, $matrix->columns);
241
- $this->assertEquals(1, $matix->get(0, 1));
+ $this->assertEquals(1, $matix->get(0, 0));
242
$this->assertEquals(5, $matix->get(0, 1));
243
- $this->assertEquals(9, $matix->get(0, 1));
+ $this->assertEquals(9, $matix->get(0, 2));
244
}
245
246
public function testTrace() {
0 commit comments