We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a794ff commit 9efd11fCopy full SHA for 9efd11f
tests/TestDynamo.Tests/SmokeTests.fs
@@ -51,7 +51,7 @@ type SmokeTests(output: ITestOutputHelper) =
51
if not DynamoDbVersion.isLatestVersion then ()
52
else
53
let slnRoot = slnRoot
54
- use vFile = System.IO.File.OpenRead($@"{slnRoot.FullName}\tests\testVersion.txt");
+ use vFile = System.IO.File.OpenRead($@"{slnRoot.FullName}/tests/testVersion.txt");
55
use vData = new System.IO.StreamReader(vFile);
56
57
let target = Version.Parse(Regex.Replace(vData.ReadToEnd(), @"[^\d\.].*", "")) |> normalizeVersion;
0 commit comments