Skip to content

Commit

Permalink
test: πŸ’ fix failed non-implemented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanonymous-GitHub committed Jul 18, 2024
1 parent c56c5c1 commit 215933e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/test/kotlin/BasicTreeTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ internal class BasicTreeTest {

private class TestBasicTree : BasicTree<TestBasicTree>() {
override val self: TestBasicTree
get() = throw NotImplementedError()
get() = this
override val traversalHelper: TraversalHelper<TestBasicTree>
get() = throw NotImplementedError()
get() = TraversalHelper(this)

override fun similarityHashCode(): Int = throw NotImplementedError()

Expand Down

0 comments on commit 215933e

Please sign in to comment.