diff options
Diffstat (limited to 'test/src/TestAPI.kt')
-rw-r--r-- | test/src/TestAPI.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt index d47770f8..0b4c2084 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -100,11 +100,11 @@ fun ContentNode.toTestString(): String { } class InMemoryLocation(override val path: String): Location { - override fun relativePathTo(other: Location, extension: String): String = other.path + override fun relativePathTo(other: Location): String = other.path } object InMemoryLocationService: LocationService { - override fun location(node: DocumentationNode) = InMemoryLocation(relativePathToNode(node)); + override fun location(node: DocumentationNode) = InMemoryLocation(relativePathToNode(node)) } val tempLocation = InMemoryLocation("") |