Skip to content

Commit 3ef7023

Browse files
committed
Correct folder path to match Unix's case sensitivity
1 parent 2a81bf4 commit 3ef7023

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Ontology.NET.Tests/OBO/OboOntology.Tests.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ module OboOntologyTests =
5959
let testFile1 = try OboOntology.fromFile false testFile1Path |> Some with _ -> None
6060
let testFile2 = try OboOntology.fromFile false testFile2Path |> Some with _ -> None
6161
let testFile3 = try OboOntology.fromFile false testFile3Path |> Some with _ -> None
62-
let testOboFile3Path = Path.Combine(__SOURCE_DIRECTORY__, "references", "testOboFile3.obo")
62+
let testOboFile3Path = Path.Combine(__SOURCE_DIRECTORY__, "References", "testOboFile3.obo")
6363
let testOboFile3 = try OboOntology.fromFile false testOboFile3Path |> Some with _ -> None
64-
let goPath = Path.Combine(__SOURCE_DIRECTORY__, "references", "go.obo")
64+
let goPath = Path.Combine(__SOURCE_DIRECTORY__, "References", "go.obo")
6565
let go = try OboOntology.fromFile false goPath |> Some with _ -> None
6666

6767

0 commit comments

Comments
 (0)