Skip to content

Commit

Permalink
test(pub): Consistently use reader
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Viernau <frank_viernau@epam.com>
  • Loading branch information
fviernau committed Aug 30, 2024
1 parent ed29629 commit bc98102
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class PubCacheReaderTest : WordSpec({
}

"resolve the path of a hosted dependency" {
PubCacheReader().findProjectRoot(
reader.findProjectRoot(
jsonMapper.readTree(
"""
{
Expand All @@ -111,7 +111,7 @@ class PubCacheReaderTest : WordSpec({
}

"resolve the relative path of a local dependency" {
PubCacheReader().findProjectRoot(
reader.findProjectRoot(
jsonMapper.readTree(
"""
{
Expand All @@ -129,7 +129,7 @@ class PubCacheReaderTest : WordSpec({
}

"resolve the absolute path of a local dependency" {
PubCacheReader().findProjectRoot(
reader.findProjectRoot(
jsonMapper.readTree(
"""
{
Expand Down

0 comments on commit bc98102

Please sign in to comment.