Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
pawelsadlo committed Nov 6, 2024
commit 9ae4b3bb40ac21be73904d21cc2824b6ebf82baa
5 changes: 4 additions & 1 deletion os/test/src-jvm/ExpectyIntegration.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ object ExpectyIntegration extends TestSuite {
expect(path.startsWith(os.Path("/") / "tmp"))
}
test("multiple args") {
expect(rel / "src" / ".." == rel / "src" / os.up, root / "src" / "../foo" == root / "src" / os.up / "foo")
expect(
rel / "src" / ".." == rel / "src" / os.up,
root / "src" / "../foo" == root / "src" / os.up / "foo"
)
}
}
}
Expand Down