Skip to content

Commit

Permalink
Using relative paths properly
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesmols committed Oct 19, 2023
1 parent d5fedc6 commit 7dd7987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pm4net.Tests/Combined/VisualizationPipelineTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module VisualizationPipelineTests =
]) |> Some
}

let dataPath = @"..\..\..\..\..\..\data\pm4net\"
let dataPath = Path.Combine("..", "..", "..", "..", "..", "..", "data", "pm4net") |> Path.GetFullPath

module Dot =

Expand Down
2 changes: 1 addition & 1 deletion pm4net.Tests/Discovery/OcelDfgTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module OcelDfgTests =
IncludedNamespaces = None
}

let dataPath = @"..\..\..\..\..\..\data\pm4net\"
let dataPath = Path.Combine("..", "..", "..", "..", "..", "..", "data", "pm4net") |> Path.GetFullPath

let timeframeFilter = {
filter with
Expand Down

0 comments on commit 7dd7987

Please sign in to comment.