Skip to content

Commit 3b65295

Browse files
Update tests/DataStructures/BSTreeTest.php
Co-authored-by: Brandon Johnson <bbj1979@gmail.com>
1 parent 42cb14a commit 3b65295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/DataStructures/BSTreeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ public function testGetDepth(): void
320320
$this->assertEquals(0, $this->tree->getdepth($root), "The root node should have a depth of 0.");
321321
$this->assertEquals(1, $this->tree->getdepth($node150), "Node 150 should have a depth of 1.");
322322
$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.");
323+
$this->assertEquals(6, $this->tree->getdepth($node70), "Node 70 should have a depth of 6.");
324324
}
325325

326326
/**

0 commit comments

Comments
 (0)