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 42cb14a commit 3b65295Copy full SHA for 3b65295
tests/DataStructures/BSTreeTest.php
@@ -320,7 +320,7 @@ public function testGetDepth(): void
320
$this->assertEquals(0, $this->tree->getdepth($root), "The root node should have a depth of 0.");
321
$this->assertEquals(1, $this->tree->getdepth($node150), "Node 150 should have a depth of 1.");
322
$this->assertEquals(4, $this->tree->getdepth($node110), "Node 110 should have a depth of 4.");
323
- $this->assertEquals(6, $this->tree->getdepth($node70), "Node 300 should have a depth of 6.");
+ $this->assertEquals(6, $this->tree->getdepth($node70), "Node 70 should have a depth of 6.");
324
}
325
326
/**
0 commit comments